:root {
  --bg: #f4efe4;
  --panel: rgba(255, 252, 246, 0.92);
  --panel-soft: #e8ede3;
  --forest: #174c41;
  --forest-deep: #12372f;
  --gold: #c4a54a;
  --text: #21312d;
  --muted: #61716b;
  --border: #c8d2c4;
  --shadow: 0 26px 70px rgba(23, 76, 65, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(196, 165, 74, 0.22), transparent 26%),
    linear-gradient(180deg, #f7f4ea 0%, var(--bg) 40%, #eef1e7 100%);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.hero {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border-radius: var(--radius-xl);
  padding: 28px;
  background: linear-gradient(135deg, rgba(18, 55, 47, 0.98), rgba(23, 76, 65, 0.94));
  box-shadow: var(--shadow);
  color: #f8f4ea;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(196, 165, 74, 0.24), transparent 26%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.established {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: rgba(248, 244, 234, 0.9);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.established::before,
.established::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(248, 244, 234, 0.38);
}

.hero-logo {
  width: min(100%, 360px);
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.22));
}

.hero h1 {
  margin: 0;
  color: #f8f4ea;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-copy {
  margin: 18px 0 0;
  max-width: 34rem;
  color: rgba(248, 244, 234, 0.88);
  font-size: 1.04rem;
  line-height: 1.8;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
}

.hero-pill {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ea;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20, 48, 42, 0.2), rgba(20, 48, 42, 0.58)), url("/pics/Dinant.jpg") center/cover no-repeat;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
}

.hero-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(247, 244, 236, 0.9);
  color: var(--forest-deep);
  box-shadow: 0 18px 32px rgba(10, 26, 22, 0.12);
}

.hero-caption strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-caption span {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}

/* Base Headings */
h1, h2, .uk-h1, .uk-h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--forest-deep);
}

/* Sections */
.section {
  margin-top: 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: 0 16px 44px rgba(25, 47, 42, 0.08);
}

.section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 0.95;
}

.section-header p {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.75;
}

.services-grid,
.language-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.services-grid,
.language-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.service-card,
.language-card,
.contact-card {
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card {
  background: linear-gradient(180deg, #ffffff, var(--panel-soft));
  box-shadow: 0 16px 28px rgba(17, 45, 39, 0.06);
}

.service-card:hover,
.language-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(17, 45, 39, 0.12);
  border-color: rgba(23, 76, 65, 0.22);
}

/* Component: Cards */
.st-card {
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  background: linear-gradient(180deg, #ffffff, var(--panel-soft));
  box-shadow: 0 16px 28px rgba(17, 45, 39, 0.06);
}

.st-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(17, 45, 39, 0.12);
  border-color: rgba(23, 76, 65, 0.22);
}

.st-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--forest-deep);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
}

.st-card p {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Buttons */
.st-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  text-decoration: none;
}
.st-button:hover {
  text-decoration: none;
  transform: translateY(-2px);
}
.st-button-primary {
  background: var(--gold);
  color: var(--forest-deep);
}
.st-button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #f8f4ea;
}

/* Lists */
.st-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.st-list li {
  position: relative;
  padding-left: 18px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.62;
}
.st-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* Typography elements */
.content-body img {
  border-radius: var(--radius-md);
  margin: 1.5em 0;
  max-width: 100%;
}

.content-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

.content-body figure {
  margin: 1.75rem 0;
}

.content-body figcaption {
  color: var(--muted);
  line-height: 1.5;
}

.content-body table {
  width: 100%;
}

.content-body th,
.content-body td {
  vertical-align: top;
}

.content-body blockquote {
  margin: 1.75rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold);
  background: rgba(232, 237, 227, 0.7);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.content-body blockquote p {
  margin: 0;
}

.content-body blockquote footer {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.content-body pre {
  overflow-x: auto;
}

.st-code-block {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--forest-deep);
  color: #f7f4ea;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.st-code-block code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.94rem;
}

.st-separator {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid rgba(23, 76, 65, 0.16);
}

.st-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.st-content-summary {
  margin-bottom: 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.st-article-toc .uk-nav > li > a {
  color: var(--forest-deep);
  line-height: 1.45;
}

.st-article-toc .uk-nav > li > a:hover {
  color: var(--forest);
}

.st-toc-level-3,
.st-toc-level-4,
.st-toc-level-5,
.st-toc-level-6 {
  padding-left: 14px;
}

.st-main-image img {
  width: 100%;
}

.st-sidebar-nav .uk-nav > li + li {
  margin-top: 8px;
}

.st-sidebar-nav .uk-nav > li > a,
.st-card a,
.st-article-toc a {
  color: var(--forest-deep);
}

.st-sidebar-nav .uk-nav > li > a:hover,
.st-card a:hover,
.st-article-toc a:hover {
  color: var(--forest);
  text-decoration: none;
}

.st-card-grid {
  margin-top: 10px;
}

.st-card-horizontal img,
.st-card-grid img {
  width: 100%;
  object-fit: cover;
}

.st-card-horizontal-media img {
  min-height: 180px;
}

.st-card-minimal {
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.st-table-image {
  max-height: 40px;
}

/* Navbar */
.uk-navbar-container {
  background: transparent !important;
  margin-bottom: 20px;
}

.uk-navbar-nav > li > a {
  color: var(--forest-deep) !important;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.uk-navbar-nav > li:hover > a, .uk-navbar-nav > li.uk-active > a {
  color: var(--forest) !important;
}

/* Language tags */
.language-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(23, 76, 65, 0.1);
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3,
.language-card h3,
.contact-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--forest-deep);
}

.service-card p,
.language-card p,
.contact-card p,
.contact-card li {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.7;
}

.service-list,
.contact-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.62;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.language-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fffaf1;
}

.language-card .st-button {
  margin-top: 20px;
  min-width: 0;
  width: fit-content;
}

.contact-wrapper {
  color: #f7f3e8;
  background: linear-gradient(135deg, var(--forest-deep), var(--forest));
}

.contact-wrapper .eyebrow,
.contact-wrapper h2 {
  color: #f7f3e8;
}

.contact-wrapper .section-header p {
  color: rgba(247, 243, 232, 0.76);
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: #f7f3e8;
}

.contact-card p,
.contact-card li,
.contact-card h3,
.contact-card a {
  color: inherit;
}

.contact-list {
  margin: 0;
}

.contact-list li + li {
  margin-top: 14px;
}

.contact-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(247, 243, 232, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.contact-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .hero-grid,
  .services-grid,
  .language-grid,
  .contact-grid,
  .section-header {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 24px, 1200px);
    padding-top: 14px;
  }
  .hero,
  .section {
    padding: 22px;
    border-radius: 24px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .st-button { width: 100%; }

  .hero-actions {
    flex-direction: column;
  }
}
