:root {
  color-scheme: dark;
  --ink: #f7f4ec;
  --muted: rgba(247, 244, 236, 0.74);
  --soft: rgba(247, 244, 236, 0.12);
  --line: rgba(247, 244, 236, 0.18);
  --pine: #0f4d3c;
  --pine-deep: #061711;
  --pine-mid: #0e2d24;
  --gold: #c8a45d;
  --teal: #63d5bd;
  --paper: #f7f4ec;
  --paper-muted: #d8d1c2;
  --charcoal: #1a1a1a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 0;
  padding: 22px clamp(18px, 4vw, 54px);
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}

.site-header-solid {
  background: rgba(6, 23, 17, 0.97);
  border-bottom: 1px solid var(--line);
  position: sticky;
}

.brand {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  display: flex;
  flex: 0 0 auto;
  min-width: 0;
  padding: 7px 12px;
}

.brand-logo {
  display: block;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  width: clamp(178px, 18vw, 228px);
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.site-nav a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  padding: 10px 12px;
}

.site-nav a {
  flex: 0 0 auto;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(247, 244, 236, 0.34);
}

.home-page {
  min-height: 100vh;
}

.hero {
  min-height: 94vh;
  overflow: hidden;
  position: relative;
}

.hero-media {
  background-image: url("assets/hero-general-trading.png");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 23, 17, 0.98) 0%, rgba(6, 23, 17, 0.86) 46%, rgba(6, 23, 17, 0.38) 100%),
    linear-gradient(0deg, rgba(6, 23, 17, 0.56), rgba(6, 23, 17, 0.1));
  inset: 0;
  position: absolute;
}

.hero-content {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.46fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(142px, 20vh, 190px) clamp(20px, 4vw, 54px) 64px;
  position: relative;
  z-index: 1;
}

.hero-copy-block {
  max-width: 760px;
  min-width: 0;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  overflow-wrap: anywhere;
}

h1 {
  font-size: 5.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.14;
  margin: 0 0 22px;
}

h2 {
  font-size: 3rem;
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.22;
  margin-bottom: 10px;
}

.hero-copy {
  color: var(--muted);
  font-size: 1.22rem;
  max-width: 710px;
}

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

.button {
  align-items: center;
  background: var(--gold);
  border: 0;
  border-radius: var(--radius);
  color: #18110a;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  color: var(--ink);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.button:hover {
  box-shadow: 0 16px 34px rgba(200, 164, 93, 0.28);
  transform: translateY(-1px);
}

.hero-card {
  align-self: start;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 30px);
  min-width: 0;
}

.hero-card h2 {
  font-size: 1.9rem;
}

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

.launch-panel {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(20px, 5vh, 52px);
  overflow: hidden;
}

.launch-panel article {
  background: rgba(6, 23, 17, 0.42);
  min-height: 190px;
  padding: 24px;
}

.launch-panel span,
.industry-card span {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 32px;
}

.launch-panel h2 {
  font-family: inherit;
  font-size: 1.08rem;
  line-height: 1.18;
  margin-bottom: 10px;
}

.launch-panel p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 0;
}

.section {
  background: var(--pine-deep);
  color: var(--ink);
  padding: clamp(70px, 9vw, 112px) 0;
}

.section-light {
  background: var(--paper);
  color: var(--charcoal);
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 clamp(20px, 4vw, 54px);
}

.section-light .eyebrow {
  color: var(--pine);
}

.section-light p,
.section-light li {
  color: rgba(26, 26, 26, 0.74);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.split-section {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
}

.content-panel {
  border-left: 3px solid var(--gold);
  min-width: 0;
  padding-left: 24px;
}

.content-panel p:last-child {
  margin-bottom: 0;
}

.card-grid,
.industry-grid {
  display: grid;
  gap: 16px;
}

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

.two-columns,
.two-column,
.service-band {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.info-card,
.statement-card,
.profile-card,
.industry-card {
  border: 1px solid rgba(26, 26, 26, 0.11);
  border-radius: var(--radius);
  padding: 24px;
}

.section:not(.section-light) .info-card,
.section:not(.section-light) .statement-card,
.section:not(.section-light) .profile-card,
.section:not(.section-light) .industry-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
}

.section-light .info-card,
.section-light .statement-card,
.section-light .profile-card,
.section-light .industry-card {
  background: #ffffff;
}

.info-card p,
.profile-card p,
.industry-card p {
  margin-bottom: 0;
}

.role {
  color: var(--gold);
  font-weight: 900;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(6, 23, 17, 0.98), rgba(14, 45, 36, 0.94)),
    url("assets/hero-general-trading.png") center / cover;
  color: var(--ink);
  padding: clamp(84px, 11vw, 132px) 0;
}

.page-hero .section-inner {
  max-width: 980px;
}

.page-hero p:last-child {
  color: var(--muted);
  font-size: 1.18rem;
  max-width: 780px;
}

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  padding-left: 26px;
  position: relative;
}

.check-list li::before {
  color: var(--gold);
  content: "\2713";
  font-weight: 900;
  left: 0;
  position: absolute;
  top: 0;
}

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

.industry-card span {
  margin-bottom: 20px;
}

.industry-card h2 {
  font-family: inherit;
  font-size: 1.2rem;
  line-height: 1.2;
}

.statement-strip {
  max-width: 900px;
  text-align: center;
}

.statement-strip h2 {
  margin-bottom: 26px;
}

.text-link {
  border-bottom: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 900;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.66fr);
}

.contact-intro p:last-child {
  max-width: 560px;
}

.contact-form {
  background: #ffffff;
  border: 1px solid rgba(20, 36, 28, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(6, 23, 17, 0.12);
  color: #14241c;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(22px, 3vw, 32px);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: #20342b;
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  background: #fbfaf6;
  border: 1px solid rgba(20, 36, 28, 0.18);
  border-radius: var(--radius);
  color: #14241c;
  min-height: 48px;
  outline: none;
  padding: 11px 12px;
  width: 100%;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #23745f;
  box-shadow: 0 0 0 4px rgba(35, 116, 95, 0.12);
}

.full-width,
.contact-form .button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  color: rgba(20, 36, 28, 0.72);
  font-size: 0.92rem;
  margin: 0;
  min-height: 1.4em;
}

.form-status-success {
  color: #0f4d3c;
  font-weight: 800;
}

.form-status-error {
  color: #8b1d1d;
  font-weight: 800;
}

.site-footer {
  background: #061711;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 24px clamp(20px, 4vw, 54px);
}

.footer-contact {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.footer-item {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.92rem;
  gap: 8px;
  line-height: 1.5;
  margin: 0;
}

.footer-item:hover {
  color: var(--ink);
}

.footer-icon {
  color: var(--gold);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1rem;
  line-height: 1;
}

.footer-copy {
  color: rgba(247, 244, 236, 0.62);
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0;
  text-align: right;
}

@media (max-width: 1080px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    justify-content: flex-start;
    width: 100%;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-content,
  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 620px;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    padding: 16px;
    text-align: center;
  }

  .brand {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    padding: 6px 10px;
  }

  .brand-logo {
    max-height: 62px;
    width: 188px;
  }

  .site-nav a {
    font-size: 0.8rem;
    padding: 9px 10px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    justify-items: center;
    width: 100%;
  }

  .hero-content {
    padding: 230px 18px 44px;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 23, 17, 0.96) 0%, rgba(6, 23, 17, 0.88) 66%, rgba(6, 23, 17, 0.54) 100%),
      linear-gradient(0deg, rgba(6, 23, 17, 0.3), rgba(6, 23, 17, 0.3));
  }

  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section-heading h2,
  .split-section h2,
  .statement-card h2 {
    max-width: 17ch;
  }

  .section-inner {
    max-width: 100vw;
    overflow: hidden;
  }

  .page-hero h1 {
    font-size: 2.16rem;
  }

  .hero-copy,
  .page-hero p:last-child {
    font-size: 1.05rem;
  }

  .page-hero p:last-child {
    max-width: 34ch;
  }

  .hero-copy {
    max-width: 34ch;
  }

  .hero-card {
    justify-self: start;
    max-width: calc(100vw - 36px);
    overflow: hidden;
    width: 320px;
  }

  .hero-card h2 {
    font-size: 1.55rem;
  }

  .launch-panel {
    justify-self: start;
    max-width: calc(100vw - 36px);
    width: 320px;
  }

  .eyebrow {
    max-width: 320px;
    overflow-wrap: anywhere;
  }

  .launch-panel,
  .three-columns,
  .two-columns,
  .two-column,
  .service-band,
  .values-grid,
  .industry-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .launch-panel article {
    min-height: 0;
  }

  .content-panel {
    padding-left: 18px;
  }

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

  .footer-copy {
    text-align: left;
  }
}
