/* ============================================
   PROFESSIONAL PEOPLE & TRADE CORP — Design System
   Concept: International trade authority. Deep navy (trust,
   maritime, corporate gravity) + copper/amber accent (industry,
   metal, energy, movement). Serif display for institutional
   weight, clean grotesk body for global/technical clarity.
   ============================================ */

:root,
[data-theme='light'] {
  /* Surfaces */
  --color-bg: #f7f5f1;
  --color-surface: #ffffff;
  --color-surface-2: #fbfaf7;
  --color-surface-offset: #eeeae3;
  --color-surface-offset-2: #e5dfd5;
  --color-surface-dynamic: #ddd5c8;
  --color-divider: #e0dbd1;
  --color-border: #d3ccbe;

  /* Text */
  --color-text: #14202e;
  --color-text-muted: #5a6675;
  --color-text-faint: #9aa3ae;
  --color-text-inverse: #f7f5f1;

  /* Primary — Deep Navy */
  --color-primary: #0e2a47;
  --color-primary-hover: #163a5f;
  --color-primary-active: #0a1f36;
  --color-primary-highlight: #d7e0e9;

  /* Accent — Copper/Amber */
  --color-accent: #b8722f;
  --color-accent-hover: #9c5f24;
  --color-accent-active: #7c4b1c;
  --color-accent-highlight: #efdcc4;

  --color-warning: #964219;
  --color-warning-hover: #713417;
  --color-warning-highlight: #ddcfc6;
  --color-error: #a12c2c;
  --color-error-hover: #7d1e1e;
  --color-error-highlight: #e0cece;
  --color-success: #3e6b3a;
  --color-success-hover: #2c4f29;
  --color-success-highlight: #d3ddd0;

  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px oklch(0.15 0.02 240 / 0.08);
  --shadow-md: 0 4px 16px oklch(0.15 0.02 240 / 0.1);
  --shadow-lg: 0 16px 40px oklch(0.15 0.02 240 / 0.16);

  --content-narrow: 640px;
  --content-default: 1000px;
  --content-wide: 1240px;
  --content-full: 100%;

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'General Sans', 'Inter', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #0b1420;
  --color-surface: #101c2b;
  --color-surface-2: #142234;
  --color-surface-offset: #17263a;
  --color-surface-offset-2: #1c2e44;
  --color-surface-dynamic: #223a54;
  --color-divider: #1e3049;
  --color-border: #2a3f5a;

  --color-text: #e8e6df;
  --color-text-muted: #99a5b3;
  --color-text-faint: #62707f;
  --color-text-inverse: #14202e;

  --color-primary: #7ea3c9;
  --color-primary-hover: #9cbbdb;
  --color-primary-active: #b6cee6;
  --color-primary-highlight: #223a54;

  --color-accent: #d99a55;
  --color-accent-hover: #e5b378;
  --color-accent-active: #efc596;
  --color-accent-highlight: #3a2c1c;

  --color-warning: #d99a55;
  --color-warning-hover: #e5b378;
  --color-warning-highlight: #3a2c1c;
  --color-error: #d17a7a;
  --color-error-hover: #dd9494;
  --color-error-highlight: #3a2323;
  --color-success: #8fb885;
  --color-success-hover: #a7c99e;
  --color-success-highlight: #253a22;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 16px 40px oklch(0 0 0 / 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0b1420;
    --color-surface: #101c2b;
    --color-surface-2: #142234;
    --color-surface-offset: #17263a;
    --color-surface-offset-2: #1c2e44;
    --color-surface-dynamic: #223a54;
    --color-divider: #1e3049;
    --color-border: #2a3f5a;
    --color-text: #e8e6df;
    --color-text-muted: #99a5b3;
    --color-text-faint: #62707f;
    --color-text-inverse: #14202e;
    --color-primary: #7ea3c9;
    --color-primary-hover: #9cbbdb;
    --color-primary-active: #b6cee6;
    --color-primary-highlight: #223a54;
    --color-accent: #d99a55;
    --color-accent-hover: #e5b378;
    --color-accent-active: #efc596;
    --color-accent-highlight: #3a2c1c;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
    --shadow-md: 0 4px 16px oklch(0 0 0 / 0.35);
    --shadow-lg: 0 16px 40px oklch(0 0 0 / 0.5);
  }
}

/* Type scale */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ============ LAYOUT PRIMITIVES ============ */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--narrow {
  max-width: var(--content-narrow);
}
.container--default {
  max-width: var(--content-default);
}

section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--color-accent);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--color-text);
  font-weight: 500;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.section-head h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-3);
}
.section-head p {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--text-base);
  max-width: 60ch;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .eyebrow::before {
  display: none;
}

p {
  max-width: 65ch;
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header--hidden {
  transform: translateY(-100%);
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: var(--space-4);
}
@media (min-width: 900px) {
  .header__inner {
    gap: var(--space-6);
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark {
  width: 38px;
  height: 38px;
  color: var(--color-primary);
  flex-shrink: 0;
}
[data-theme='dark'] .brand__mark {
  color: var(--color-primary);
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand__name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand__sub {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: none;
}
@media (min-width: 560px) {
  .brand__sub {
    display: block;
  }
}
@media (max-width: 380px) {
  .brand__name {
    font-size: 12px;
  }
}

.nav {
  display: none;
}
@media (min-width: 900px) {
  .nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
  }
}
.nav a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-block: var(--space-1);
}
.nav a:hover {
  color: var(--color-text);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width var(--transition-interactive);
}
.nav a:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .header__actions {
    gap: var(--space-3);
  }
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  border: 1px solid transparent;
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .icon-btn {
    width: 40px;
    height: 40px;
  }
}
.icon-btn:hover {
  color: var(--color-text);
  background: var(--color-surface-offset);
}
.icon-btn svg {
  width: 18px;
  height: 18px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
}
.lang-toggle button {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}
@media (min-width: 900px) {
  .lang-toggle button {
    padding: var(--space-1) var(--space-3);
  }
}
.lang-toggle button[aria-pressed='true'] {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  border-color: var(--color-border);
  color: var(--color-text);
}
.btn--ghost:hover {
  background: var(--color-surface-offset);
  border-color: var(--color-text-faint);
}
.btn--inverse {
  background: var(--color-text-inverse);
  color: var(--color-primary);
}
.btn--inverse:hover {
  background: var(--color-accent-highlight);
}

.mobile-toggle {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-bg);
  padding: var(--space-24) var(--space-6) var(--space-8);
  display: none;
  flex-direction: column;
  gap: var(--space-6);
  overflow-y: auto;
}
.mobile-menu.is-open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  text-decoration: none;
}
.mobile-menu__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--color-text-inverse);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    oklch(0.12 0.03 250 / 0.55) 0%,
    oklch(0.1 0.03 250 / 0.35) 40%,
    oklch(0.08 0.03 250 / 0.92) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(var(--space-20), 14vw, var(--space-32)) var(--space-16);
  width: 100%;
}
.hero__eyebrow {
  color: var(--color-accent-hover);
  filter: brightness(1.4);
}
[data-theme='dark'] .hero__eyebrow,
.hero__eyebrow {
  color: #e5b378;
}
.hero__eyebrow::before {
  background: #e5b378;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.75rem, 2rem + 4.5vw, 5.5rem);
  max-width: 16ch;
  margin-top: var(--space-4);
  letter-spacing: -0.01em;
}
.hero__lede {
  margin-top: var(--space-6);
  font-size: var(--text-lg);
  color: oklch(0.95 0.01 250 / 0.82);
  max-width: 52ch;
  font-family: var(--font-body);
}
.hero__actions {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.hero__meta {
  margin-top: var(--space-16);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 640px;
  border-top: 1px solid oklch(1 0 0 / 0.18);
  padding-top: var(--space-6);
}
.hero__meta-item dt {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fff;
}
.hero__meta-item dd {
  font-size: var(--text-xs);
  color: oklch(0.95 0.01 250 / 0.65);
  margin-top: var(--space-1);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ============ ABOUT ============ */
.about {
  background: var(--color-surface);
}
.about__grid {
  display: grid;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}
.about__media {
  position: relative;
}
.about__media img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4 / 3.3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
}
.about__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
}
.about__badge span {
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.75;
}
.about__body p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-top: var(--space-4);
}
.about__body p:first-of-type {
  margin-top: var(--space-5);
}
.about__list {
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-4);
}
.about__list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.about__list svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  margin-top: 2px;
}

/* ============ SERVICES ============ */
.services {
  background: var(--color-surface-offset);
  position: relative;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 700px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-card--feature {
    grid-column: span 2;
    grid-row: span 2;
  }
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition:
    transform var(--transition-interactive),
    box-shadow var(--transition-interactive);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card--feature {
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 340px;
  color: #fff;
  justify-content: flex-end;
}
.service-card--feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.service-card--feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(0.1 0.03 250 / 0.15) 0%, oklch(0.08 0.03 250 / 0.9) 100%);
  z-index: 1;
}
.service-card--feature .service-card__content {
  position: relative;
  z-index: 2;
  padding: var(--space-8);
}
.service-card--feature h3 {
  color: #fff;
}
.service-card--feature p {
  color: oklch(0.95 0.01 250 / 0.8);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card__icon svg {
  width: 22px;
  height: 22px;
}
.service-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  font-family: var(--font-body);
}
.service-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.service-card__num {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--color-accent);
}

/* ============ WHY US ============ */
.why {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, oklch(1 0 0 / 0.06), transparent 45%),
    radial-gradient(circle at 85% 80%, oklch(1 0 0 / 0.05), transparent 45%);
  pointer-events: none;
}
.why .section-head p {
  color: oklch(0.95 0.01 250 / 0.7);
}
.why .eyebrow {
  color: #e5b378;
}
.why .eyebrow::before {
  background: #e5b378;
}
.why h2 {
  color: #fff;
}
.why__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 700px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .why__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why-card {
  border-top: 1.5px solid oklch(1 0 0 / 0.25);
  padding-top: var(--space-5);
}
.why-card__stat {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #e5b378;
  line-height: 1;
}
.why-card h3 {
  color: #fff;
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 600;
  margin-top: var(--space-3);
}
.why-card p {
  font-size: var(--text-sm);
  color: oklch(0.95 0.01 250 / 0.68);
  margin-top: var(--space-2);
}

/* ============ SECTORS / CLIENTS ============ */
.sectors {
  background: var(--color-surface);
}
.sectors__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 700px) {
  .sectors__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.sector-item {
  background: var(--color-surface);
  padding: var(--space-8) var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
}
.sector-item svg {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
}
.sector-item span {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}

/* ============ LEGAL / TRUST STRIP ============ */
.trust {
  background: var(--color-surface-offset);
}
.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
@media (min-width: 900px) {
  .trust__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}
.trust__table {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.trust__row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-sm);
}
.trust__row:not(:last-child) {
  border-bottom: 1px solid var(--color-divider);
}
.trust__row dt {
  color: var(--color-text-muted);
}
.trust__row dd {
  font-weight: 600;
  color: var(--color-text);
  text-align: right;
}
.trust__note {
  margin-top: var(--space-5);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}
.trust__note svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust__note a {
  color: var(--color-accent);
}

/* ============ CONTACT ============ */
.contact {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, oklch(1 0 0 / 0.07), transparent 50%);
  pointer-events: none;
}
.contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
}
@media (min-width: 900px) {
  .contact__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.contact h2 {
  color: #fff;
  font-size: var(--text-2xl);
}
.contact__lede {
  margin-top: var(--space-4);
  color: oklch(0.95 0.01 250 / 0.72);
  font-size: var(--text-base);
  max-width: 48ch;
}
.contact .eyebrow {
  color: #e5b378;
}
.contact .eyebrow::before {
  background: #e5b378;
}
.contact-card {
  background: oklch(1 0 0 / 0.06);
  border: 1px solid oklch(1 0 0 / 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  backdrop-filter: blur(8px);
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding-block: var(--space-4);
}
.contact-row:not(:last-child) {
  border-bottom: 1px solid oklch(1 0 0 / 0.12);
}
.contact-row__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: oklch(1 0 0 / 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-row__icon svg {
  width: 19px;
  height: 19px;
  color: #e5b378;
}
.contact-row dt {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: oklch(0.95 0.01 250 / 0.6);
}
.contact-row dd a,
.contact-row dd {
  font-size: var(--text-base);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-top: 2px;
}
.contact-row dd a:hover {
  color: #e5b378;
}
.contact-card .btn {
  margin-top: var(--space-6);
  width: 100%;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-12) var(--space-8);
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-divider);
}
.footer__brand p {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 40ch;
}
.footer__cols {
  display: flex;
  gap: var(--space-16);
  flex-wrap: wrap;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
  font-weight: 600;
}
.footer__col ul {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer__col a:hover {
  color: var(--color-accent);
}
.footer__bottom {
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ============ MISC ============ */
.divider-pattern {
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-accent) 0px,
    var(--color-accent) 24px,
    transparent 24px,
    transparent 48px
  );
  opacity: 0.5;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[lang-hidden] {
  display: none !important;
}
