:root {
  --bg: #ece9e1;
  --card: #ffffff;
  --soft: #fcfbf8;
  --ink: #27313a;
  --muted: #60707a;
  --navy: #0b2230;
  --petrol: #103a43;
  --bronze: #a67c52;
  --bronze-soft: #dcc8af;
  --light: #c6d1d4;
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 24px 70px rgba(18, 24, 28, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 24px;
  --radius-sm: 22px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
#app {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.page-shell {
  width: min(100%, 1320px);
  max-width: 100%;
  margin: 0 auto;
  padding: 32px 24px;
  overflow-x: clip;
}

.top-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 16px 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.03);
  backdrop-filter: blur(8px);
}
.nav-left { font-size: 14px; font-weight: 600; color: var(--navy); }
.nav-center { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; color: #556067; font-size: 14px; }
.nav-center a:hover { color: var(--navy); }
.nav-right { display: flex; justify-content: flex-end; }
.lang-switch {
  display: flex;
  background: #f5f1e8;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 4px;
}
.lang {
  border: 0;
  background: transparent;
  color: #60707a;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
}
.lang.active { background: var(--navy); color: white; box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

.site-card {
  max-width: 100%;
  margin-top: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero {
  position: relative;
  background: var(--navy);
  padding: 40px 40px 48px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, transparent 35%, rgba(255,255,255,0.14) 36%, transparent 38%, transparent 100%);
  opacity: 0.2;
}
.hero > * { position: relative; z-index: 1; }
.hero-brand { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.hero-brand-title {
  color: #d7c3aa;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  font-weight: 700;
}
.hero-brand-sub { color: var(--light); font-size: 14px; margin-top: 6px; }
.logo-mark {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(145deg, #0f2a35, #123847);
  border: 1px solid rgba(201, 167, 122, 0.35);
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}
.logo-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  border: 1px solid rgba(201, 167, 122, 0.35);
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: -18%;
  background: linear-gradient(120deg, transparent 0%, transparent 44%, rgba(255,255,255,0.05) 46%, rgba(255,255,255,0.48) 50%, rgba(255,255,255,0.05) 54%, transparent 58%, transparent 100%);
  transform: translateX(-180%) skewX(-24deg);
  animation: logoShimmer 8s ease-in-out infinite;
}
.logo-mark span {
  position: relative;
  color: #f7f3ec;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 24px;
}
@keyframes logoShimmer {
  0% { transform: translateX(-180%) skewX(-24deg); opacity: 0; }
  10% { opacity: 0.65; }
  20% { transform: translateX(180%) skewX(-24deg); opacity: 0; }
  100% { transform: translateX(180%) skewX(-24deg); opacity: 0; }
}
.hero-headline {
  max-width: 760px;
  margin: 0;
  color: white;
  font-size: clamp(52px, 7vw, 76px);
  line-height: 1.04;
  font-weight: 600;
  font-family: Georgia, "Times New Roman", serif;
}
.hero-headline .block { display: block; }
.hero-lead,
.hero-rotator-body {
  max-width: 980px;
  font-size: 24px;
  line-height: 1.65;
  color: #e9e5de;
}
.hero-lead {
  max-width: 860px;
  font-size: 19px;
  color: var(--light);
  margin: 28px 0 0;
}
.hero-rotator { max-width: 1020px; min-height: 220px; margin-top: 28px; }
.hero-rotator-title {
  margin: 0;
  color: #f4efe7;
  font-size: 38px;
  line-height: 1.18;
  font-weight: 700;
}
.hero-rotator-body { margin: 20px 0 0; }
.hero-dots { display: flex; gap: 10px; margin-top: 28px; }
.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.3);
}
.dot.active { background: #c2a27c; }
.dot:hover { background: rgba(255,255,255,0.5); }

.hero,
.hero-brand,
.hero-brand-text,
.hero-rotator,
.content-grid,
.column,
.card,
.service-card-grid,
.service-card,
.service-detail,
.detail-grid,
.mini-card,
.process-item,
.contact-stack,
.nav-center,
.nav-right {
  min-width: 0;
}

.hero-headline,
.hero-lead,
.hero-rotator-title,
.hero-rotator-body,
.section-title,
.detail-title,
.process-closing,
.contact-strong,
.service-card-title,
.service-card-teaser,
.body-text,
.download-button,
.tier-button,
.email-button {
  overflow-wrap: anywhere;
  word-break: normal;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.column {
  padding: 32px 32px 36px;
}
.left { background: #f5f1e8; }
.right {
  background: white;
  border-left: 1px solid var(--line);
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
}
.card.soft { background: var(--soft); }
.card.dark {
  background: var(--navy);
  color: white;
}
.top-gap { margin-top: 24px; }
.top-gap-sm { margin-top: 16px; }
.section-label {
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}
.section-label.light { color: #d7c3aa; }
.section-title {
  margin: 0;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
}
.light-text { color: white; }
.body-text {
  font-size: 19px;
  line-height: 1.7;
}
.body-text.muted { color: var(--muted); }
.body-text.light-muted { color: var(--light); }

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.service-card.active {
  background: var(--soft);
  border-color: var(--bronze);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.service-card-title {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}
.service-card-teaser,
.process-item .body-text,
.contact-stack .body-text,
.mini-card .bullet-list,
.download-button,
.tier-button,
.process-intro {
  font-size: 19px;
  line-height: 1.7;
}
.service-card-teaser { color: var(--muted); margin-top: 14px; }
.service-detail {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
}
.detail-title {
  margin: 0;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}
.tier-buttons,
.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.tier-button,
.download-button,
.email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 14px 18px;
  border: 1px solid var(--bronze-soft);
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}
.tier-button.active,
.download-button,
.email-button {
  background: white;
  color: var(--navy);
}
.download-button { background: var(--soft); }
.email-button {
  background: rgba(255,255,255,0.05);
  color: white;
  border-color: rgba(255,255,255,0.2);
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.mini-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.mini-card-title,
.process-title {
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
}
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  color: var(--muted);
}
.bullet-list li { display: flex; gap: 12px; margin-top: 10px; }
.bullet {
  width: 6px;
  height: 6px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--bronze);
  flex: 0 0 6px;
}
.process-list { display: flex; flex-direction: column; gap: 12px; }
.process-item {
  display: flex;
  gap: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.process-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--navy);
  color: white;
  font-size: 14px;
  font-weight: 700;
  flex: 0 0 44px;
}
.process-closing {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.45;
  font-weight: 700;
}
.contact-strong {
  color: white;
  font-size: 21px;
  font-weight: 700;
}
.contact-stack { display: flex; flex-direction: column; gap: 14px; }
.footer {
  border-top: 1px solid var(--line);
  padding: 20px 24px;
  text-align: center;
  color: #7a6b5b;
  font-style: italic;
  font-size: 14px;
  background: white;
}

@media (max-width: 1100px) {
  .content-grid { grid-template-columns: 1fr; }
  .right { border-left: 0; border-top: 1px solid var(--line); }
  .service-card-grid,
  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .top-nav { grid-template-columns: 1fr; }
  .nav-left, .nav-right { justify-self: start; }
  .nav-center { justify-content: flex-start; }
  .page-shell { padding: 20px 16px; }
  .hero { padding: 28px 20px 34px; }
  .hero-headline { font-size: 48px; }
  .hero-rotator-title { font-size: 30px; }
  .hero-lead, .hero-rotator-body, .body-text, .service-card-teaser, .download-button, .tier-button { font-size: 17px; }
  .section-title { font-size: 30px; }
  .column { padding: 22px; }
}

@media (max-width: 640px) {
  .service-card-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 40px; }
  .hero-rotator-title { font-size: 26px; }
  .body-text, .hero-lead, .hero-rotator-body, .service-card-teaser, .mini-card .bullet-list, .download-button, .tier-button { font-size: 16px; }
  .section-title { font-size: 26px; }
  .process-closing { font-size: 22px; }
  .detail-title { font-size: 30px; }
}

@media (max-width: 480px) {
  .page-shell {
    padding: 12px;
  }
  .top-nav {
    padding: 14px 14px;
  }
  .hero {
    padding: 22px 16px 28px;
  }
  .hero-brand {
    gap: 14px;
    margin-bottom: 22px;
  }
  .hero-headline {
    font-size: 34px;
  }
  .hero-lead,
  .hero-rotator-body,
  .body-text,
  .service-card-teaser,
  .download-button,
  .tier-button,
  .email-button {
    font-size: 16px;
    line-height: 1.65;
  }
  .hero-rotator-title {
    font-size: 24px;
    line-height: 1.22;
  }
  .hero-rotator {
    min-height: 0;
  }
  .column {
    padding: 16px;
  }
  .card,
  .service-detail {
    padding: 18px 16px;
  }
  .detail-title,
  .section-title {
    font-size: 28px;
  }
  .process-item {
    padding: 14px;
    gap: 12px;
  }
  .process-number {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}
