:root {
  --bg: #f2eee8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --ink: #1c2b33;
  --muted: #5f7078;
  --line: rgba(28, 43, 51, 0.12);
  --accent: #0d7a74;
  --accent-deep: #0a4f52;
  --sand: #d8c4a3;
  --shadow: 0 30px 80px rgba(28, 43, 51, 0.12);
  --radius: 28px;
  --radius-small: 18px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(216, 196, 163, 0.45), transparent 28%),
    radial-gradient(circle at bottom right, rgba(13, 122, 116, 0.12), transparent 26%),
    linear-gradient(180deg, #f7f4ef 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 28px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(28, 43, 51, 0.08);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-switch button.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.brand-mark-image {
  overflow: hidden;
  padding: 0;
}

.brand-mark-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a:not(.button) {
  color: var(--muted);
  font-weight: 500;
}

.site-nav a.is-current:not(.button) {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 10px 14px;
  font: inherit;
}

.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 28px;
  align-items: stretch;
  padding: 42px 0 22px;
}

.hero-copy,
.hero-panel,
.info-card,
.quote-block,
.contact-card,
.timeline-item {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 44px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8)),
    linear-gradient(120deg, rgba(13, 122, 116, 0.08), transparent 55%);
}

.eyebrow,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.hero-lead,
.section-heading p,
.info-card p,
.timeline-item p,
.quote-block p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
}

.button-secondary,
.button-small {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.panel-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.panel-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.panel-card a {
  display: block;
  margin-top: 8px;
  font-weight: 600;
}

.panel-emphasis {
  background: linear-gradient(160deg, rgba(10, 79, 82, 0.96), rgba(13, 122, 116, 0.82));
  color: #fff;
}

.panel-emphasis .panel-label {
  color: rgba(255, 255, 255, 0.75);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 12px 0 24px;
}

.trust-band div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--accent-deep);
  font-weight: 700;
  text-align: center;
}

.section {
  padding: 56px 0;
}

.page-hero {
  padding: 48px 0 20px;
}

.page-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.page-hero p:last-child {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stack-grid {
  display: grid;
  gap: 20px;
}

.info-card,
.contact-card,
.quote-block {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.info-card h3,
.timeline-item h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.section-contrast {
  position: relative;
  margin: 20px 0;
  padding: 56px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(12, 34, 38, 0.98), rgba(15, 66, 68, 0.92)),
    linear-gradient(120deg, rgba(216, 196, 163, 0.18), transparent 50%);
  color: #eef7f7;
}

.section-contrast .eyebrow,
.section-contrast .section-heading p,
.section-contrast .timeline-item p {
  color: rgba(238, 247, 247, 0.78);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline-item span {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 16px;
  background: rgba(216, 196, 163, 0.16);
  color: var(--sand);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.quote-block {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(216, 196, 163, 0.28));
}

.quote-block p {
  margin: 0;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.5;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-card a {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

.site-footer {
  padding: 14px 0 34px;
  color: var(--muted);
  text-align: center;
}

.site-footer-branded {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding-top: 8px;
}

.footer-logo {
  width: min(100%, 280px);
  height: auto;
  display: block;
  opacity: 0.92;
}

@media (max-width: 980px) {
  .hero,
  .grid-three,
  .grid-two,
  .contact-card,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--content));
  }

  .site-header,
  .hero-copy,
  .panel-card,
  .info-card,
  .quote-block,
  .contact-card,
  .timeline-item,
  .section-contrast {
    border-radius: 22px;
  }

  .hero-copy,
  .contact-card,
  .info-card,
  .quote-block,
  .timeline-item {
    padding: 22px;
  }

  .hero {
    padding-top: 16px;
  }
}
