/* ============================================================
   Infinity Products SL — styles.css
   Palette & identity derived from the company logo:
   deep navy #1D3249 · champagne gold #AF916C–#D4BD9C · cream #FAF8F5
   ============================================================ */

:root {
  --navy-950: #0D1B2A;
  --navy-900: #12243A;
  --navy-800: #1D3249;
  --navy-700: #27405C;
  --gold: #C3A57C;
  --gold-deep: #AF916C;
  --gold-soft: #E4D3B4;
  --paper: #FAF8F5;
  --white: #FFFFFF;
  --ink: #1B2836;
  --muted: #5C6B7A;
  --line: #E7E0D3;
  --petrol: #1E5F6B;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
  --shadow: 0 12px 32px rgba(13, 27, 42, 0.10);
  --shadow-lg: 0 24px 60px rgba(13, 27, 42, 0.16);
  --radius: 14px;
  --wrap: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.22rem; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- eyebrow + section headers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}
.eyebrow--light { color: var(--gold-soft); }

.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy-900); color: #C9D4DF; }
.section--navy h2, .section--navy h3 { color: var(--white); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 1.06rem; }
.section--navy .section-head p { color: #AAB9C6; }
.section-head--row {
  max-width: none; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}

/* ---------- signature: gold infinity loop ---------- */
.loop { display: block; width: 84px; height: 30px; margin: 26px 0 0; }
.loop path { fill: none; stroke: var(--gold); stroke-width: 2.4; }
.center .loop, .loop--center { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}
.btn-gold { background: linear-gradient(135deg, #D4BD9C, #AF916C); color: var(--navy-900); box-shadow: 0 8px 22px rgba(175, 145, 108, 0.35); }
.btn-gold:hover { box-shadow: 0 12px 28px rgba(175, 145, 108, 0.45); }
.btn-navy { background: var(--navy-800); color: #F3EDE2; }
.btn-navy:hover { background: var(--navy-700); }
.btn-ghost { border-color: rgba(250, 248, 245, 0.55); color: var(--white); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-outline { border-color: var(--navy-800); color: var(--navy-800); }
.btn-outline:hover { background: var(--navy-800); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.86rem; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- navigation ---------- */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(13, 27, 42, 0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 48px; width: auto; border-radius: 6px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a, .drop-btn {
  padding: 10px 14px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--navy-800);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links > a:hover, .drop-btn:hover { background: rgba(29, 50, 73, 0.07); }
.nav-links > a.active { color: var(--gold-deep); font-weight: 600; }
.nav-cta { margin-left: 10px; }
.nav-drop { position: relative; }
.drop-btn { display: inline-flex; align-items: center; gap: 6px; }
.drop-btn svg { width: 12px; height: 12px; transition: transform 0.2s ease; }
.drop-panel {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all 0.18s ease;
}
.nav-drop:hover .drop-panel, .nav-drop.open .drop-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-drop:hover .drop-btn svg, .nav-drop.open .drop-btn svg { transform: rotate(180deg); }
.drop-panel a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 0.9rem; color: var(--navy-800); }
.drop-panel a:hover { background: var(--paper); color: var(--gold-deep); }
.drop-panel a span { display: block; font-size: 0.74rem; color: var(--muted); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.burger span { width: 22px; height: 2px; background: var(--navy-800); transition: all 0.2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero (home) ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background:
    linear-gradient(100deg, rgba(13, 27, 42, 0.94) 0%, rgba(18, 36, 58, 0.86) 45%, rgba(18, 36, 58, 0.45) 100%),
    url("../assets/img/photos/hero-fish-ice.jpg") center 40% / cover no-repeat;
  color: #D8E0E8; padding: 150px 0 110px;
}
.hero h1 { color: var(--white); max-width: 720px; }
.hero h1 em { font-style: normal; color: var(--gold-soft); }
.hero .lead { max-width: 560px; margin-top: 22px; font-size: 1.13rem; color: #B9C6D2; }
.hero .btn-row { margin-top: 36px; }
.hero-badges { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 54px; padding-top: 28px; border-top: 1px solid rgba(212, 189, 156, 0.25); }
.hero-badges li { font-size: 0.86rem; letter-spacing: 0.04em; color: #B9C6D2; display: flex; align-items: center; gap: 10px; }
.hero-badges strong { color: var(--gold-soft); font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }

/* ---------- page hero (interior) ---------- */
.page-hero {
  position: relative; padding: 170px 0 84px;
  background:
    linear-gradient(115deg, rgba(13, 27, 42, 0.95) 0%, rgba(18, 36, 58, 0.88) 60%, rgba(18, 36, 58, 0.72) 100%),
    url("../assets/img/photos/sea-dark.jpg") center 65% / cover no-repeat;
  color: #C9D4DF;
}
.page-hero--fruit {
  background-image:
    linear-gradient(115deg, rgba(13, 27, 42, 0.95) 0%, rgba(18, 36, 58, 0.88) 60%, rgba(18, 36, 58, 0.70) 100%),
    url("../assets/img/photos/hero-citrus-boxes.jpg");
}
.page-hero h1 { color: var(--white); }
.page-hero .lead { max-width: 620px; margin-top: 18px; color: #B9C6D2; font-size: 1.08rem; }
.breadcrumb { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; }
.breadcrumb a { color: #B9C6D2; } .breadcrumb a:hover { color: var(--gold-soft); }

/* ---------- category split panels ---------- */
.cat-split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.cat-panel {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 420px; display: flex; align-items: flex-end;
  box-shadow: var(--shadow); color: var(--white);
}
.cat-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cat-panel:hover img { transform: scale(1.04); }
.cat-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,27,42,0.05) 30%, rgba(13,27,42,0.88) 100%); }
.cat-panel-body { position: relative; z-index: 1; padding: 34px; width: 100%; }
.cat-panel-body .count { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gold-soft); letter-spacing: 0.08em; }
.cat-panel-body h3 { color: var(--white); font-size: 1.7rem; margin: 6px 0 10px; }
.cat-panel-body p { color: #C2CDD7; font-size: 0.95rem; max-width: 420px; }
.cat-panel-body .card-link { margin-top: 16px; }

/* ---------- value grid ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-item .v-icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(212,189,156,0.25), rgba(175,145,108,0.18));
  border: 1px solid rgba(175, 145, 108, 0.35); margin-bottom: 18px;
}
.value-item .v-icon svg { width: 22px; height: 22px; stroke: var(--gold-deep); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.value-item h3 { font-size: 1.06rem; margin-bottom: 8px; }
.value-item p { font-size: 0.92rem; color: var(--muted); }

/* ---------- product cards ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 22px; }
.prod-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; display: block; height: 210px; background: var(--white); border-bottom: 1px solid var(--line); overflow: hidden; }
.card-media img { width: 100%; height: 100%; }
.card-media--contain img { object-fit: contain; padding: 18px; }
.card-media--cover img { object-fit: cover; }
.card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: rgba(13, 27, 42, 0.85); color: var(--gold-soft);
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.12rem; }
.card-body h3 a:hover { color: var(--gold-deep); }
.card-sci { font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted); font-style: italic; margin-top: 3px; }
.card-specs { margin: 16px 0 18px; border-top: 1px solid var(--line); }
.card-specs li { display: flex; gap: 12px; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 0.82rem; }
.card-specs li span { flex: 0 0 68px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.66rem; padding-top: 2px; }
.card-specs li b { font-family: var(--font-mono); font-weight: 500; color: var(--navy-800); }
.card-actions { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card-link {
  font-size: 0.86rem; font-weight: 600; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 6px;
}
.card-link:hover { color: var(--navy-800); }
.card-link::after { content: "→"; transition: transform 0.15s ease; }
.card-link:hover::after { transform: translateX(3px); }

/* ---------- filter bar ---------- */
.filter-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 12px 10px 22px; margin-bottom: 40px; box-shadow: var(--shadow);
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 8px 16px; border-radius: 999px; font-size: 0.84rem; font-weight: 500;
  border: 1px solid var(--line); color: var(--muted); transition: all 0.15s ease;
}
.chip:hover { border-color: var(--gold); color: var(--navy-800); }
.chip.active { background: var(--navy-800); border-color: var(--navy-800); color: var(--gold-soft); }
.filter-search {
  display: flex; align-items: center; gap: 8px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
}
.filter-search input { border: 0; background: none; font: inherit; font-size: 0.88rem; width: 170px; color: var(--ink); }
.filter-search input:focus { outline: none; }
.filter-search svg { width: 15px; height: 15px; stroke: var(--muted); fill: none; stroke-width: 2; }
.result-note { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); margin: -24px 0 24px; }

/* ---------- steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.step { position: relative; padding: 8px 26px 8px 0; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 26px; left: calc(100% - 18px); width: 36px;
  border-top: 1.5px dashed rgba(175, 145, 108, 0.6);
}
.step-num {
  font-family: var(--font-mono); font-size: 0.74rem; color: var(--gold-deep);
  border: 1px solid rgba(175, 145, 108, 0.5); width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 18px; background: var(--white);
}
.step h3 { font-size: 1.04rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--muted); }
.section--navy .step p { color: #AAB9C6; }
.section--navy .step h3 { color: var(--white); }
.section--navy .step-num { background: transparent; color: var(--gold-soft); }

/* vertical flow (import/export) */
.flow { max-width: 640px; margin: 0 auto; }
.flow-step {
  display: flex; align-items: center; gap: 20px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 26px; box-shadow: var(--shadow);
}
.flow-step .f-num { font-family: var(--font-mono); color: var(--gold-deep); font-size: 0.8rem; flex: 0 0 30px; }
.flow-step h3 { font-size: 1.05rem; } .flow-step p { font-size: 0.86rem; color: var(--muted); }
.flow-connector { width: 1.5px; height: 34px; margin: 4px auto 4px 44px; background: linear-gradient(var(--gold-deep), var(--gold-deep)); opacity: 0.5; border-left: 1.5px dashed var(--gold-deep); background: none; }

/* ---------- detail page ---------- */
.detail-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: start; }
.detail-photo {
  position: sticky; top: 104px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.detail-photo .ph { height: 430px; background: var(--white); }
.detail-photo .ph img { width: 100%; height: 100%; object-fit: contain; padding: 30px; }
.detail-photo--cover .ph img { object-fit: cover; padding: 0; }
.detail-photo .ph-caption { padding: 14px 20px; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--muted); display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.badge { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(175, 145, 108, 0.45); color: var(--gold-deep); background: rgba(212, 189, 156, 0.12); }

.spec-table { width: 100%; border-collapse: collapse; margin-top: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.spec-table wrapper, .spec-table { border-radius: var(--radius); }
.spec-table th, .spec-table td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: 0.9rem; vertical-align: top; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.spec-table th { width: 190px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.7rem; padding-top: 15px; }
.spec-table td { color: var(--navy-900); font-family: var(--font-mono); font-size: 0.84rem; }

.quality-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.quality-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; }
.quality-item svg { width: 26px; height: 26px; stroke: var(--gold-deep); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 14px; }
.quality-item h3 { font-size: 0.98rem; margin-bottom: 6px; }
.quality-item p { font-size: 0.84rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: 20px;
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  padding: 70px 60px; color: #C9D4DF;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  border: 1.5px solid rgba(212, 189, 156, 0.25); border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(212, 189, 156, 0.06);
}
.cta-band h2 { color: var(--white); max-width: 520px; }
.cta-band .btn-row { margin-top: 0; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.form-block + .form-block { margin-top: 24px; }
.form-block h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.form-block h3 .tag { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold-deep); border: 1px solid rgba(175,145,108,0.5); border-radius: 999px; padding: 3px 10px; letter-spacing: 0.08em; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--navy-800); letter-spacing: 0.02em; }
.field label em { font-style: normal; color: var(--gold-deep); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 15px;
  font: inherit; font-size: 0.92rem; color: var(--ink); background: var(--paper);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(195, 165, 124, 0.18); outline: none; }
.field textarea { min-height: 120px; resize: vertical; }
.field .err { font-size: 0.75rem; color: #B4433A; display: none; }
.field.invalid input, .field.invalid select { border-color: #B4433A; }
.field.invalid .err { display: block; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.82rem; color: var(--muted); }
.consent input { margin-top: 3px; }
.form-success { display: none; background: rgba(47, 125, 91, 0.08); border: 1px solid rgba(47, 125, 91, 0.35); border-radius: var(--radius); padding: 26px 28px; margin-top: 24px; }
.form-success.show { display: block; }
.form-success h3 { color: #2F7D5B; margin-bottom: 8px; }
.form-success .ref { font-family: var(--font-mono); font-size: 0.84rem; color: var(--navy-800); background: var(--white); border: 1px dashed var(--gold); border-radius: 8px; display: inline-block; padding: 6px 14px; margin: 10px 0 14px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-card { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-card svg { flex: 0 0 24px; width: 24px; height: 24px; stroke: var(--gold-deep); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.contact-card h3 { font-size: 0.98rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.92rem; color: var(--muted); }
.contact-card a:hover { color: var(--gold-deep); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); margin-top: 30px; }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- b2b profiles ---------- */
.profile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.profile-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; transition: all 0.2s ease; }
.profile-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.profile-card svg { width: 24px; height: 24px; stroke: var(--gold-deep); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 14px; }
.profile-card h3 { font-size: 1rem; margin-bottom: 6px; }
.profile-card p { font-size: 0.84rem; color: var(--muted); }

/* ---------- insights ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; transition: all 0.2s ease; }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.post-card .meta { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold-deep); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.post-card h3 { font-size: 1.12rem; line-height: 1.3; }
.post-card p { font-size: 0.9rem; color: var(--muted); margin: 10px 0 18px; }
.post-card .card-link { margin-top: auto; }
.article { max-width: 760px; margin: 0 auto; }
.article h2 { margin: 44px 0 14px; }
.article p { margin: 14px 0; color: #33414F; }
.article ul { list-style: disc; padding-left: 22px; margin: 14px 0; color: #33414F; }
.article ul li { margin: 6px 0; }
.article .meta { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); margin-bottom: 8px; }

/* ---------- markets ---------- */
.market-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.market-list { display: flex; flex-direction: column; }
.market-item { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 15px 4px; border-bottom: 1px solid var(--line); }
.market-item b { font-weight: 600; color: var(--navy-800); font-size: 0.98rem; }
.market-item span { font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted); text-align: right; }
.route-svg { width: 100%; height: auto; background: var(--navy-900); border-radius: var(--radius); }
.route-svg text { font-family: var(--font-mono); font-size: 11px; fill: #B9C6D2; letter-spacing: 0.08em; }
.route-svg .arc { fill: none; stroke: var(--gold); stroke-width: 1.4; opacity: 0.75; stroke-dasharray: 4 5; }
.route-svg .node { fill: var(--gold-soft); }
.route-svg .hub { fill: var(--gold); }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-950); color: #93A3B2; margin-top: 0; }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding: 70px 0 50px; }
.footer-main h4 { color: var(--white); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); font-weight: 600; }
.footer-main a { display: block; padding: 5px 0; font-size: 0.9rem; transition: color 0.15s ease; }
.footer-main a:hover { color: var(--gold-soft); }
.footer-brand img { height: 54px; border-radius: 8px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; }
.footer-contact li { display: flex; gap: 10px; padding: 5px 0; font-size: 0.9rem; align-items: baseline; }
.footer-contact b { color: #C9D4DF; font-weight: 500; flex: 0 0 78px; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-bar { border-top: 1px solid rgba(147, 163, 178, 0.15); padding: 22px 0; }
.footer-bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 0.78rem; }
.footer-bar a { margin-left: 18px; } .footer-bar a:hover { color: var(--gold-soft); }

/* ---------- misc ---------- */
.page-note { font-size: 0.78rem; color: var(--muted); background: rgba(212, 189, 156, 0.12); border: 1px solid rgba(175, 145, 108, 0.3); border-radius: 10px; padding: 12px 18px; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: left; padding: 26px 26px; background: rgba(250, 248, 245, 0.04); border: 1px solid rgba(212, 189, 156, 0.2); border-radius: var(--radius); }
.stat strong { font-family: var(--font-display); font-weight: 500; font-size: 2.2rem; color: var(--gold-soft); display: block; }
.stat span { font-size: 0.85rem; color: #AAB9C6; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.img-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.check-list li { display: flex; gap: 12px; padding: 9px 0; font-size: 0.95rem; color: #33414F; }
.check-list li::before { content: "✓"; color: var(--gold-deep); font-weight: 700; }
.legal { max-width: 800px; margin: 0 auto; }
.legal h2 { margin: 40px 0 12px; font-size: 1.3rem; }
.legal p, .legal li { color: #33414F; margin: 10px 0; font-size: 0.95rem; }
.legal ul { padding-left: 20px; list-style: disc; }
.ph-block { background: rgba(212, 189, 156, 0.14); border-left: 3px solid var(--gold); padding: 12px 18px; border-radius: 0 10px 10px 0; font-size: 0.85rem; color: var(--navy-800); margin: 16px 0; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .prod-card, .value-item, .cat-panel img { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--paper); flex-direction: column; align-items: stretch;
    padding: 24px; gap: 6px; overflow-y: auto;
    transform: translateX(100%); transition: transform 0.25s ease; z-index: 95;
  }
  .nav-links.open { transform: none; }
  .nav-links > a, .drop-btn { padding: 14px 12px; font-size: 1.02rem; border-bottom: 1px solid var(--line); border-radius: 0; width: 100%; text-align: left; }
  .drop-panel { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 6px 14px; display: none; }
  .nav-drop.open .drop-panel { display: block; }
  .nav-cta { margin: 18px 0 0; }
  .burger { display: flex; }
  .value-grid, .quality-grid, .profile-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .step:not(:last-child)::after { display: none; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .hero { padding: 130px 0 80px; min-height: auto; }
  .cat-split, .two-col, .detail-grid, .contact-grid, .market-cols, .form-grid { grid-template-columns: 1fr; }
  .detail-photo { position: static; }
  .steps { grid-template-columns: 1fr; }
  .cta-band { padding: 46px 28px; }
  .filter-bar { border-radius: 20px; padding: 14px; }
  .filter-search { width: 100%; }
  .filter-search input { width: 100%; }
  .value-grid, .quality-grid, .profile-grid, .post-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .hero-badges { gap: 16px; }
}
