/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; font-weight: 400; line-height: 1.7; color: #1a1a1a; background: #fff; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; }
ul { list-style: none; }
p { color: #4a5568; line-height: 1.8; }
p + p { margin-top: 1rem; }
strong { color: #1a1a1a; font-weight: 600; }
em { font-style: italic; }

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  --navy:    #0b1f3a;
  --navy2:   #0f2d50;
  --gold:    #b8843a;
  --gold2:   #d4a855;
  --cream:   #f8f5f0;
  --blue:    #1a5f8a;
  --text:    #1a1a1a;
  --muted:   #4a5568;
  --light:   #eef2f7;
  --border:  #e2e8f0;
}

/* ─── Typography ──────────────────────────────────────────── */
.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.h2--light { color: #fff; }
.h2 em { font-style: italic; color: var(--gold); }

.label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.label--light { color: var(--gold2); }

.section { padding: 100px 0; }

/* ─── Nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 0 48px;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav--scrolled {
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__brand-mark {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__brand-name {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.9);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.nav__links a:hover { color: #fff; }
.nav__cta {
  padding: 9px 22px !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav__cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 14px 32px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover { background: var(--gold2); }
.btn--ghost {
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  margin-left: 12px;
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #060f1e 0%, #0b1f3a 50%, #0f2d50 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 65% 50%, rgba(26, 95, 138, 0.25) 0%, transparent 70%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  padding-top: 72px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero__dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 32px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold2);
}
.hero__desc {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 44px;
}
.hero__actions { display: flex; align-items: center; }
.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: #fff;
  clip-path: polygon(0 80%, 100% 0, 100% 100%, 0% 100%);
}

/* ─── Stats ───────────────────────────────────────────────── */
.stats {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
}
.stat {
  padding: 52px 0;
  text-align: center;
}
.stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1;
  color: var(--navy);
}
.stat__num span {
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  margin-left: 2px;
}
.stat__label {
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat__divider {
  width: 1px;
  background: var(--border);
  margin: 32px 0;
}

/* ─── About ───────────────────────────────────────────────── */
.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__left .h2 { margin-bottom: 32px; }
.pullquote {
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  background: var(--cream);
}
.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.about__tags span {
  padding: 5px 14px;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Values ──────────────────────────────────────────────── */
.values {
  background: var(--navy);
  padding: 100px 0;
}
.values__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.values__inner .h2 { margin: 0 0 60px; }
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.value {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.value:last-child { border-right: none; }
.value__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}
.value h3 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.value p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ─── Process ─────────────────────────────────────────────── */
.process__header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 64px;
}
.process__header .h2 { margin-top: 0; }
.process__steps {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.process__step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 48px;
  padding-bottom: 64px;
}
.process__step--last { padding-bottom: 0; }
.process__step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.process__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  background: var(--cream);
  border: 1px solid var(--border);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process__line {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin-top: 16px;
  min-height: 40px;
}
.process__step-body { padding-top: 12px; }
.process__step-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.process__locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin: 20px 0;
}
.loc {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--muted);
}
.loc__dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.callout {
  margin-top: 20px;
  padding: 18px 24px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}
.callout strong { color: var(--navy); }

/* ─── Products ────────────────────────────────────────────── */
.products {
  background: var(--navy);
  padding: 100px 0;
}
.products__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.products__header { margin-bottom: 56px; }
.products__header .h2 { margin: 0 0 16px; }
.products__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  max-width: 560px;
}
.products__table { border: 1px solid rgba(255,255,255,0.08); }
.ptable__head {
  display: grid;
  grid-template-columns: 220px 1fr 140px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  gap: 24px;
}
.ptable__row {
  display: grid;
  grid-template-columns: 220px 1fr 140px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 24px;
  align-items: center;
  transition: background 0.15s;
}
.ptable__row:hover { background: rgba(255,255,255,0.03); }
.ptable__row--last { border-bottom: none; }
.ptable__species {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}
.ptable__species em { color: rgba(255,255,255,0.45); font-style: italic; font-size: 0.9rem; }
.ptable__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.ptable__cat { display: flex; align-items: center; }
.cat-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(184, 132, 58, 0.4);
  color: var(--gold2);
}
.cat-tag--alt {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
}

/* ─── Markets ─────────────────────────────────────────────── */
.markets__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.markets__header { margin-bottom: 56px; }
.markets__header .h2 { margin-bottom: 16px; }
.markets__sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 560px;
}
.markets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.market {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.market:hover { background: var(--cream); }
.market:nth-child(3n) { border-right: none; }
.market:nth-child(4), .market:nth-child(5), .market:nth-child(6) { border-bottom: none; }
.market__region {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.2;
}
.market__destinations {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 12px;
}
.market p { font-size: 0.85rem; }

/* ─── Why Us ──────────────────────────────────────────────── */
.whyus {
  background: #060f1e;
  padding: 100px 0;
}
.whyus__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.whyus__header { margin-bottom: 56px; }
.whyus__header .h2 { margin-bottom: 16px; }
.whyus__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  max-width: 500px;
}
.whyus__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
}
.why {
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.why:hover { background: rgba(255,255,255,0.03); }
.why:nth-child(4n) { border-right: none; }
.why:nth-child(5), .why:nth-child(6), .why:nth-child(7), .why:nth-child(8) { border-bottom: none; }
.why__bar {
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
  opacity: 0.6;
}
.why h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.why p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ─── Contact ─────────────────────────────────────────────── */
.contact { background: var(--cream); }
.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__left .h2 { margin: 0 0 20px; }
.contact__left > p { margin-bottom: 32px; }
.contact__email a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.contact__email a:hover { color: var(--gold); }
.contact__web {
  margin-top: 8px;
}
.contact__web a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}
.contact__web a:hover { color: var(--navy); }
.contact__card {
  background: var(--navy);
  padding: 48px;
}
.contact__block { margin-bottom: 32px; }
.contact__block:last-child { margin-bottom: 0; }
.contact__block h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact__block p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.contact__divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.contact__regions li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  padding: 4px 0 4px 14px;
  position: relative;
}
.contact__regions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 48px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}
.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 6px;
}
.footer__brand em { color: var(--gold); font-style: normal; font-weight: 400; }
.footer__tagline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 32px;
}
.footer__line {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.footer__bottom {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer__bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--gold); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .values__grid { grid-template-columns: 1fr 1fr; }
  .value { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .value:nth-child(2n) { border-right: none; }
  .whyus__grid { grid-template-columns: 1fr 1fr; }
  .why:nth-child(2n) { border-right: none; }
  .why:nth-child(n+7) { border-bottom: none; }
  .why:nth-child(5), .why:nth-child(6) { border-bottom: 1px solid rgba(255,255,255,0.07); }
}

@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav__links { gap: 20px; }
  .hero__content { padding: 0 24px; padding-top: 72px; }
  .hero__scroll { right: 24px; }
  .stats__inner { padding: 0 24px; grid-template-columns: 1fr 1fr; }
  .stat__divider { display: none; }
  .stat { padding: 36px 0; border-bottom: 1px solid var(--border); }
  .about__inner, .contact__inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .values__inner, .whyus__inner, .products__inner, .markets__inner, .process__header, .process__steps { padding: 0 24px; }
  .markets__grid { grid-template-columns: 1fr 1fr; }
  .market:nth-child(3n) { border-right: 1px solid var(--border); }
  .market:nth-child(2n) { border-right: none; }
  .market:nth-child(n+5) { border-bottom: none; }
  .market:nth-child(3), .market:nth-child(4) { border-bottom: 1px solid var(--border); }
  .ptable__head, .ptable__row { grid-template-columns: 160px 1fr 110px; gap: 16px; }
  .footer__inner { padding: 0 24px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 640px) {
  .hero__title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .nav__links li:not(:last-child) { display: none; }
  .values__grid { grid-template-columns: 1fr; }
  .value { border-right: none; }
  .whyus__grid { grid-template-columns: 1fr; }
  .why { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07) !important; }
  .why:last-child { border-bottom: none !important; }
  .markets__grid { grid-template-columns: 1fr; }
  .market { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .market:last-child { border-bottom: none !important; }
  .process__step { grid-template-columns: 60px 1fr; gap: 0 24px; }
  .ptable__head, .ptable__row { grid-template-columns: 1fr; }
  .ptable__head span:not(:first-child) { display: none; }
  .ptable__cat { display: none; }
}
