/*
Theme Name: Strait of Hormuz Toll Service
Theme URI: https://example.com/
Author: Codex
Author URI: https://example.com/
Description: A focused WordPress landing page theme for a maritime toll service concept around the Strait of Hormuz.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: hormuz-toll
*/

:root {
  --ink: #101820;
  --muted: #586673;
  --line: #d9e1e8;
  --sea: #006c7a;
  --navy: #123044;
  --sand: #f4efe4;
  --gold: #c9943f;
  --white: #ffffff;
  --soft: #f7fafb;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--sea), var(--navy));
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.94rem;
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--sea);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 26, 38, 0.92), rgba(8, 26, 38, 0.66) 48%, rgba(8, 26, 38, 0.22)),
    url("assets/hormuz-hero.svg") center / cover no-repeat;
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #d9f0f3;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: #eaf5f6;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--soft);
}

.section.sand {
  background: var(--sand);
}

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

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 24px;
  border-top: 3px solid var(--gold);
  background: var(--white);
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.payment-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.wallet {
  padding: 24px;
  border: 1px solid rgba(16, 24, 32, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(16, 24, 32, 0.08);
}

.wallet-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wallet-label-spaced {
  margin-top: 18px;
}

.wallet-code {
  display: block;
  overflow-wrap: anywhere;
  padding: 16px;
  border-radius: 6px;
  background: #101820;
  color: #d9f0f3;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.95rem;
  text-decoration: none;
}

.notice {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.93rem;
}

.contact-band {
  color: var(--white);
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.site-footer {
  padding: 28px 0;
  color: #c9d5dd;
  background: #0d1d28;
  font-size: 0.9rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .grid,
  .steps,
  .payment-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    min-height: 720px;
  }
}
