@font-face {
  font-family: "TypoGraphica";
  src: url("../../webfonts_TypoGraphica1/TypoGraphica1.ttf.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bert Sans";
  src: url("../../webfonts_Bert-Sans-Medium/Bert-Sans-Medium.ttf.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --charcoal: #1a1a1a;
  --charcoal-2: #25211d;
  --gold: #d4af37;
  --deep-gold: #aa7c11;
  --cream: #f7f5f0;
  --white: #ffffff;
  --line: rgba(26, 26, 26, 0.14);
  --muted: #6b665d;
  --font-brand: "TypoGraphica", Georgia, serif;
  --font-body: "Bert Sans", Arial, sans-serif;
  --page-gutter: clamp(48px, 6vw, 128px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  margin: 16px;
  padding: 10px 14px;
  clip: auto;
  background: var(--white);
  color: var(--charcoal);
}

.container {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.58);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(18, 18, 18, 0.94);
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.nav-shell {
  width: 100%;
  max-width: 1440px;
  min-height: 88px;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 8px 0;
}

.brand img {
  width: 172px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 15px;
  color: rgba(255, 255, 255, 0.78);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 6px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(212, 175, 55, 0.08);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  margin-left: 6px;
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  padding-inline: 18px;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: var(--gold);
  color: var(--charcoal);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--gold);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle:hover {
  border-color: rgba(212, 175, 55, 0.72);
  background: rgba(212, 175, 55, 0.08);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 62px;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--charcoal);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.76), rgba(10, 10, 10, 0.42) 47%, rgba(10, 10, 10, 0.18)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.56), rgba(10, 10, 10, 0.04) 42%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
  transform: scale(1.02);
  animation: heroDrift 18s ease-out both;
}

.hero-content {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  padding-bottom: 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow.dark {
  color: var(--deep-gold);
}

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

h1,
h2 {
  font-family: var(--font-brand);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(56px, 7vw, 106px);
  line-height: 0.94;
}

h2 {
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02;
}

h3 {
  font-size: 20px;
  line-height: 1.3;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.button-primary:hover {
  background: #e0bd4d;
}

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

.button-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-note {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-note span {
  padding: 22px 22px 0 0;
}

.section {
  padding: 112px 0;
}

.section-heading h2,
.about-title h2,
.contact-intro h2 {
  max-width: 980px;
}

.section-heading p:last-child,
.about-copy p,
.contact-intro p {
  max-width: 720px;
}

.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px 86px;
  align-items: start;
}

.about-title {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}

.about-copy {
  color: var(--muted);
  font-size: 18px;
}

.about-image {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  height: 430px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}

.trading-section {
  background: var(--white);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 54px;
}

.trading-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trading-item {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 310px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.trading-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 500ms ease, filter 500ms ease;
}

.trading-item:hover img {
  transform: scale(1.035);
  filter: saturate(0.9);
}

.trading-content {
  padding: 34px 32px;
}

.trading-content span {
  display: block;
  margin-bottom: 32px;
  color: var(--deep-gold);
  font-size: 13px;
}

.trading-content h3 {
  margin-bottom: 14px;
}

.trading-content p,
.strength p,
.contact-intro p,
.site-footer p {
  color: var(--muted);
}

.why-section {
  background: var(--cream);
}

.why-grid {
  display: block;
}

.why-grid .section-heading {
  max-width: 980px;
  margin-bottom: 58px;
}

.strength-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.strength {
  display: grid;
  align-content: start;
  min-height: 190px;
  gap: 20px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strength h3 {
  margin-bottom: 0;
}

.strength p {
  margin-bottom: 0;
}

.global-statement {
  padding: 118px 0;
  background: var(--charcoal);
  color: var(--white);
}

.global-statement .container {
  position: relative;
  border-left: 0;
  padding-left: calc(var(--page-gutter) + 34px);
}

.global-statement .container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--page-gutter);
  width: 2px;
  background: var(--gold);
}

.global-statement h2 {
  max-width: 820px;
  margin-bottom: 22px;
}

.global-statement p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(620px, 1.18fr);
  gap: clamp(56px, 6vw, 96px);
  align-items: start;
}

.contact-intro {
  max-width: 520px;
}

.contact-intro > p {
  font-size: 18px;
}

address {
  display: grid;
  gap: 10px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-style: normal;
}

address span,
address a {
  color: var(--muted);
  overflow-wrap: anywhere;
}

address a:hover {
  color: var(--deep-gold);
}

.contact-form {
  padding: 38px;
  border: 1px solid var(--line);
  background: #fbfaf7;
  width: 100%;
}

.map-section {
  padding: 96px 0 0;
  background: var(--white);
}

.map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.map-heading h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.6vw, 62px);
}

.map-frame {
  width: min(1540px, calc(100% - (var(--page-gutter) * 2)));
  height: clamp(330px, 42vw, 500px);
  margin-inline: auto;
  overflow: hidden;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  border-inline: 1px solid rgba(26, 26, 26, 0.12);
  background: var(--cream);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.72) contrast(1.02);
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

label span {
  color: rgba(26, 26, 26, 0.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: 0;
  background: var(--white);
  color: var(--charcoal);
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--deep-gold);
}

.hidden-field {
  display: none;
}

.form-alert {
  margin-bottom: 22px;
  padding: 13px 15px;
  border: 1px solid;
}

.form-alert.success {
  border-color: rgba(46, 125, 50, 0.35);
  background: #edf7ee;
  color: #225d26;
}

.form-alert.error {
  border-color: rgba(144, 44, 36, 0.35);
  background: #fbefed;
  color: #7a2119;
}

.site-footer {
  padding: 54px 0 28px;
  background: var(--charcoal);
  color: var(--white);
}

.footer-grid {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.5);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-brand);
  font-size: 34px;
  line-height: 1;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 44px;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

.reveal-scale {
  transform: translateY(24px) scale(0.985);
}

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

.trading-grid .reveal:nth-child(2),
.strength-list .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.trading-grid .reveal:nth-child(3),
.strength-list .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.trading-grid .reveal:nth-child(4),
.strength-list .reveal:nth-child(4) {
  transition-delay: 230ms;
}

.trading-grid .reveal:nth-child(5) {
  transition-delay: 300ms;
}

.trading-grid .reveal:nth-child(6) {
  transition-delay: 370ms;
}

@keyframes heroDrift {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.02);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .hero-media img {
    animation: none;
  }
}

@media (max-width: 980px) {
  :root {
    --page-gutter: 24px;
  }

  .nav-shell {
    min-height: 78px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: var(--page-gutter);
    right: var(--page-gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(212, 175, 55, 0.26);
    background: rgba(18, 18, 18, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: flex-start;
    min-height: 48px;
    padding: 14px 14px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: rgba(255, 255, 255, 0.82);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .nav-cta {
    justify-content: center;
    margin: 12px 0 0;
    text-align: center;
  }

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .why-grid {
    display: block;
  }

  .strength-list {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    max-width: 760px;
  }

  .trading-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 86px 0;
  }

  .map-section {
    padding-top: 78px;
  }

  .map-heading {
    display: block;
  }
}

@media (max-width: 720px) {
  :root {
    --page-gutter: 30px;
  }

  .container,
  .hero-content,
  .hero-note {
    width: 100%;
    padding-inline: var(--page-gutter);
  }

  .brand img {
    width: 142px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 116px;
  }

  h1 {
    font-size: clamp(48px, 18vw, 70px);
  }

  h2 {
    font-size: clamp(36px, 14vw, 52px);
  }

  .hero-content {
    padding-bottom: 46px;
  }

  .hero-copy,
  .about-copy,
  .global-statement p:last-child,
  .contact-intro > p {
    font-size: 16px;
  }

  .hero-note {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-note span {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .about-title {
    padding-left: 22px;
  }

  .about-image {
    height: 310px;
  }

  .trading-item {
    grid-template-columns: 1fr;
  }

  .trading-item img {
    height: 230px;
  }

  .trading-content {
    padding: 34px 30px;
  }

  .trading-content span {
    margin-bottom: 18px;
  }

  .strength,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .global-statement {
    padding: 86px 0;
  }

  .global-statement .container {
    width: 100%;
    padding-left: calc(var(--page-gutter) + 24px);
    padding-right: var(--page-gutter);
  }

  .global-statement .container::before {
    left: var(--page-gutter);
  }

  .contact-form {
    padding: 30px;
  }

  .map-frame {
    width: calc(100% - (var(--page-gutter) * 2));
    height: 360px;
    border-inline: 1px solid rgba(26, 26, 26, 0.12);
  }

  .footer-grid,
  .site-footer nav {
    flex-direction: column;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(24px);
  }
}

@media (max-width: 420px) {
  :root {
    --page-gutter: 26px;
  }

  .contact-form,
  .trading-content,
  .strength {
    padding-inline: 26px;
  }
}
