:root {
  --black: #050505;
  --off-black: #101010;
  --ink: #171717;
  --charcoal: #252525;
  --steel: #7d7d7d;
  --line: #d7d7d7;
  --soft: #f3f3f0;
  --white: #ffffff;
  --max: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--black);
  color: var(--white);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--black);
  padding: .75rem 1rem;
  transition: transform .25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  padding: 1.15rem clamp(1rem, 3vw, 2.5rem);
  color: var(--white);
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 5, 5, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  padding-top: .85rem;
  padding-bottom: .85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  transition: opacity .25s ease, transform .25s ease;
  line-height: 1;
}

.brand:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.brand-logo {
  height: 42px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.site-footer .brand-logo {
  filter: none;
  height: 38px;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(1rem, 2.4vw, 2rem);
  font-size: .83rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-nav a {
  color: rgba(255, 255, 255, .76);
  transition: color .25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid currentColor;
  padding: .85rem 1.15rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta {
  color: var(--white);
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-media,
.image-panel,
.service-image {
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.08);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("https://images.unsplash.com/photo-1742568196592-55357c3e1dda?auto=format&fit=crop&q=80&w=2200");
  transform: scale(1.05);
  animation: slowZoom 18s var(--ease) infinite alternate;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .5) 52%, rgba(0, 0, 0, .7)),
    linear-gradient(0deg, rgba(0, 0, 0, .82), transparent 44%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding-top: clamp(8rem, 12vh, 10rem);
  padding-bottom: clamp(8.5rem, 14vh, 11rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: currentColor;
  opacity: .68;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 4.85vw, 5.65rem);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4.9rem);
  line-height: .98;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.button-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .44);
}

.button-dark {
  width: 100%;
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.trust-strip {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 2rem));
  transform: translateX(-50%);
  border-top: 1px solid rgba(255, 255, 255, .24);
  border-left: 1px solid rgba(255, 255, 255, .18);
  pointer-events: none;
}

.trust-strip span {
  min-height: 5.75rem;
  display: flex;
  align-items: center;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .78);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 3vw, 2.5rem);
}

.section-grid,
.split-layout,
.service-feature,
.contact-section,
.site-footer {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(140px, 240px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.section-kicker {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--steel);
  border-top: 1px solid var(--ink);
  padding-top: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  font-weight: 750;
}

.section-kicker span {
  color: var(--ink);
}

.section-copy p:not(.eyebrow),
.split-copy p,
.contact-copy p {
  max-width: 720px;
  color: #4d4d4d;
  font-size: 1.06rem;
}

.metrics {
  width: min(var(--max), 100%);
  margin: clamp(3rem, 6vw, 5.5rem) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.metrics div {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics strong {
  display: block;
  margin-bottom: .5rem;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
}

.metrics span {
  color: #575757;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.statement,
.responsibility {
  background: var(--black);
  color: var(--white);
  padding: clamp(5rem, 10vw, 10rem) clamp(1rem, 3vw, 2.5rem);
}

.statement-inner,
.responsibility-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.statement h2 {
  max-width: 1050px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  min-height: 640px;
  background: var(--off-black);
  color: var(--white);
}

.image-panel {
  min-height: 420px;
  background-image: url("https://images.unsplash.com/photo-1742568196592-55357c3e1dda?auto=format&fit=crop&q=80&w=1400");
}

.split-copy {
  align-self: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.split-copy p {
  color: rgba(255, 255, 255, .68);
}

.line-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.line-list li,
.service-points span,
.compliance-grid p {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .76);
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.section-heading h2 {
  max-width: 880px;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: stretch;
  margin-top: 1rem;
  border-top: 1px solid var(--ink);
  padding-top: clamp(1rem, 3vw, 2rem);
}

.service-feature-reverse {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
}

.service-feature-reverse .service-copy {
  order: 2;
}

.service-feature-reverse .service-image {
  order: 1;
}

.service-copy {
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  aspect-ratio: 1;
  margin-bottom: 1.4rem;
  border: 1px solid var(--ink);
  font-weight: 800;
}

.service-copy p {
  max-width: 660px;
  color: #505050;
  font-size: 1.04rem;
}

.service-points {
  display: grid;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.service-points span {
  border-color: var(--line);
  color: #383838;
}

.service-image {
  min-height: 520px;
}

.trading-image {
  background-image: url("https://images.unsplash.com/photo-1742568196592-55357c3e1dda?auto=format&fit=crop&q=80&w=1200");
}

.logistics-image {
  background-image: url("https://images.squarespace-cdn.com/content/v1/55e8b422e4b0f03e7d0ee66f/1441394710286-KOPSJC7MFVT3Z676E9GP/gas-tanker-bw.jpg?format=1500w");
}

.value-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.value-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.value-card:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-6px);
}

.value-card span {
  color: var(--steel);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.value-card h3 {
  margin: auto 0 1rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.value-card p {
  margin-bottom: 0;
  color: #626262;
}

.value-card:hover p {
  color: rgba(255, 255, 255, .7);
}

.responsibility h2 {
  max-width: 980px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.compliance-grid p {
  margin: 0;
  padding-right: 1.3rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 6.5rem;
  align-self: start;
}

.contact-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 2rem;
}

.contact-cards-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.15rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: #cda34f;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  border-radius: 6px;
  background: rgba(205, 163, 79, 0.1);
  color: #a47514;
  border: 1px solid rgba(205, 163, 79, 0.25);
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

.contact-value {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  word-break: break-word;
  transition: color 0.2s ease;
}

a.contact-value:hover {
  color: #a47514;
}

.ar-name {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.92rem;
  color: #6b7280;
  font-weight: 500;
  direction: rtl;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
}

.social-links a {
  padding-bottom: 0.2rem;
  border-bottom: 1.5px solid var(--ink);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover {
  color: #a47514;
  border-bottom-color: #a47514;
}

/* Form Wrapper & Inputs */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.form-header {
  padding: 1.6rem 2rem 1.2rem;
  border-bottom: 1px solid #f0f0f0;
  background: #fdfdfc;
}

.form-header h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.form-header p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--steel);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1rem;
  padding: 1.8rem 2rem 2rem;
  background: transparent;
  border: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #374151;
}

.form-group .required {
  color: #cda34f;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  background: #fbfbfb;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.75rem 0.95rem;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.contact-form input {
  height: 2.85rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
  font-size: 0.88rem;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: #9ca3af;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #ffffff;
  border-color: #cda34f;
  box-shadow: 0 0 0 3px rgba(205, 163, 79, 0.18);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  margin-top: 0.5rem;
}

.form-submit-btn {
  width: 100%;
  min-height: 3.1rem;
  background: #111113;
  color: #cda34f;
  border: 1.5px solid #cda34f;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.form-submit-btn:hover {
  background: #cda34f;
  color: #0c0c0e;
  border-color: #cda34f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(205, 163, 79, 0.3);
}

.form-submit-btn svg {
  transition: transform 0.2s ease;
}

.form-submit-btn:hover svg {
  transform: translateX(3px);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 1.25rem;
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: #15803d;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: #5c5c5c;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-strip.reveal {
  transform: translate(-50%, 28px);
}

.trust-strip.reveal.is-visible {
  transform: translate(-50%, 0);
}

@keyframes slowZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    justify-self: end;
    display: grid;
    gap: .38rem;
    width: 2.75rem;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .4);
    background: transparent;
    color: var(--white);
    padding: .75rem;
  }

  .nav-toggle span {
    display: block;
    height: 1px;
    background: currentColor;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-cta {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.is-open .site-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 2rem 0 1rem;
  }

  .site-header.is-open .header-cta {
    justify-self: start;
  }

  .trust-strip,
  .metrics,
  .value-grid,
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: clamp(2.85rem, 8vw, 4.9rem);
  }

  .split-layout,
  .service-feature,
  .service-feature-reverse,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-feature-reverse .service-copy,
  .service-feature-reverse .service-image {
    order: initial;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-bottom: 1rem;
  }

  .hero-content {
    padding-top: 6.25rem;
    padding-bottom: 2.25rem;
    align-self: start;
  }

  h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.25rem);
    line-height: .96;
  }

  .trust-strip {
    position: relative;
    left: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: calc(100% - 2rem);
    margin: 0 auto;
    transform: none;
  }

  .trust-strip.reveal,
  .trust-strip.reveal.is-visible {
    transform: none;
  }

  .trust-strip span {
    min-height: 3.5rem;
  }

  .section-grid,
  .metrics,
  .value-grid,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .form-header {
    padding: 1.25rem 1.25rem 1rem;
  }

  .contact-form {
    padding: 1.25rem 1.25rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-card {
    padding: 1rem 1.1rem;
  }

  .split-layout {
    min-height: auto;
  }

  .image-panel,
  .service-image {
    min-height: 360px;
  }

  .value-card {
    min-height: 240px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
