
:root {
  --bg: #f4f1eb;
  --surface: #ffffff;
  --surface-2: #f8f6f2;
  --text: #132235;
  --muted: #5f6b78;
  --line: #d9d3c8;
  --brand: #10233f;
  --brand-2: #19355c;
  --accent: #b18a4a;
  --accent-soft: #e9dcc2;
  --shadow: 0 14px 40px rgba(11, 28, 48, 0.10);
  --radius: 18px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--brand-2); text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.small { font-size: .95rem; color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.eyebrow:before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(244, 241, 235, 0.92);
  border-bottom: 1px solid rgba(16, 35, 63, 0.10);
}
.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--brand);
  min-width: 0;
}
.brand img {
  width: 54px;
  height: auto;
}
.brand-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-title strong {
  font-size: 1.05rem;
  line-height: 1.2;
}
.brand-title span {
  font-size: .86rem;
  color: var(--muted);
}
.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .96rem;
}
.nav-links a.active,
.nav-links a:hover {
  background: rgba(16, 35, 63, 0.08);
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: stretch;
}
.hero-copy {
  background: linear-gradient(180deg, rgba(16,35,63,.96) 0%, rgba(25,53,92,.95) 100%);
  color: white;
  padding: 54px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-copy:after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177,138,74,.35) 0%, rgba(177,138,74,0) 70%);
}
.hero-copy h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
  margin: 18px 0 18px;
  letter-spacing: -.03em;
}
.hero-copy .lead {
  font-size: 1.18rem;
  color: rgba(255,255,255,.90);
  max-width: 46rem;
}
.hero-copy p { color: rgba(255,255,255,.82); }
.hero-panel {
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: 16px;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  color: #ffd700;
}

.btn-primary {
  background: var(--accent);
  color: #1b1b1b;
  box-shadow: 0 10px 22px rgba(177,138,74,.22);
}

.btn-primary:hover {
  color: #ffd700;
}

.btn-secondary {
  background: rgba(255,255,255,.08);
  color: white;
  border: 1px solid rgba(255,255,255,.18);
}

.btn-secondary:hover {
  color: #ffd700;
}


.hero-media {
  display: grid;
  gap: 20px;
}
.media-card {
  position: relative;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
}
.media-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.68);
  padding: 18px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
}
section { padding: 28px 0; }
.band { padding-top: 0; }
.kpi-grid,
.grid-2,
.grid-3,
.partner-grid,
.process-grid,
.criteria-grid,
.audience-grid,
.profile-stats {
  display: grid;
  gap: 20px;
}
.kpi-grid { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.criteria-grid { grid-template-columns: repeat(4, 1fr); }
.audience-grid { grid-template-columns: repeat(3, 1fr); }
.process-grid { grid-template-columns: repeat(4, 1fr); }
.profile-stats { grid-template-columns: repeat(4, 1fr); }
.card,
.feature,
.kpi,
.section-card,
.process-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.kpi {
  padding: 24px 22px;
}
.kpi strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--brand);
}
.feature,
.card { padding: 26px; }
.feature h3,
.card h3 { margin-top: 0; font-size: 1.24rem; color: var(--brand); }
.section-card { padding: 30px; }
.section-card h2 {
  margin: 0 0 14px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.7rem, 2.7vw, 2.3rem);
  line-height: 1.1;
  color: var(--brand);
}
.section-intro {
  max-width: 56rem;
  margin-bottom: 22px;
}
.clean {
  margin: 0;
  padding-left: 1.1rem;
}
.clean li { margin-bottom: 9px; }
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.badge {
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--brand);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: .92rem;
  font-weight: 600;
}
.highlight {
  background: linear-gradient(180deg, rgba(233,220,194,.55) 0%, rgba(255,255,255,1) 100%);
}
.row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.row:last-child { border-bottom: 0; padding-bottom: 0; }
.row strong { color: var(--brand); }
.process-step {
  padding: 24px;
  position: relative;
}
.process-step .step {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: white;
  font-weight: 700;
  margin-bottom: 14px;
}
.page-hero {
  padding: 42px 0 12px;
}
.page-hero-box {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
  overflow: hidden;
}
.page-hero-box img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 18px;
}
.breadcrumbs {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.notice {
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: var(--surface-2);
  border-radius: 12px;
}
.profile-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 24px;
  align-items: start;
}
.profile-photo,
.logo-stage {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.profile-photo img.main-placeholder {
  width: 100%;
  border-radius: 18px;
  border: 1px dashed var(--line);
  background: var(--surface-2);
}
.logo-stage {
  display: flex;
  align-items: center;
  gap: 18px;
}
.logo-stage img { width: 90px; }
.logo-stage .big-brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.55rem;
  color: var(--brand);
  line-height: 1.15;
}
.footer {
  margin-top: 24px;
  background: #0c1829;
  color: rgba(255,255,255,.84);
}
.footer-box {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer a { color: rgba(255,255,255,.84); }
.footer a:hover { color: #fff; }
hr.sep {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 10px 0 0;
}
@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-box,
  .profile-grid,
  .grid-2,
  .grid-3,
  .kpi-grid,
  .criteria-grid,
  .audience-grid,
  .process-grid,
  .profile-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav { align-items: flex-start; padding: 14px 0; }
  .nav, .brand { flex-direction: column; }
  .nav-links { width: 100%; justify-content: flex-start; }
  .hero-grid,
  .page-hero-box,
  .profile-grid,
  .grid-2,
  .grid-3,
  .kpi-grid,
  .criteria-grid,
  .audience-grid,
  .process-grid,
  .profile-stats { grid-template-columns: 1fr; }
  .hero-copy { padding: 34px 24px; }
  .media-card img { min-height: 320px; }
  .row { grid-template-columns: 1fr; gap: 6px; }
  .logo-stage { flex-direction: column; align-items: flex-start; }
}

.big-brand { font-size: 2rem; font-weight: 700; color: var(--brand); line-height: 1.1; }

.profile-photo img.profile-image {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.contact-form {
  margin-top: 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-full {
  grid-column: 1 / -1;
}
.field label {
  font-weight: 600;
  color: var(--brand);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
}
.field textarea {
  resize: vertical;
  min-height: 180px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(177, 138, 74, 0.14);
}
.checkbox-field {
  margin-top: 4px;
}
.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400 !important;
  color: var(--muted) !important;
}
.checkbox-wrap input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.form-actions {
  margin-top: 18px;
}
@media (max-width: 820px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(16, 35, 63, 0.12);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  white-space: nowrap;
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--text);
  font-size: .85rem;
  font-weight: 700;
}
.lang-switch a.active,
.lang-switch a:hover {
  background: rgba(16, 35, 63, 0.08);
}
@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .lang-switch {
    margin-left: auto;
  }
}
