:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-2: #f0f2f0;
  --surface-3: #fbfbfa;
  --text: #1f2328;
  --muted: #60656c;
  --line: #dde2e0;
  --brand: #86dfee;
  --brand-strong: #64cfe3;
  --brand-deep: #1f3f49;
  --silver: #c9cbcf;
  --silver-deep: #8d9197;
  --ink: #16191d;
  --warm: #f3f4f2;
  --shadow: 0 20px 55px rgba(15, 22, 28, 0.08);
  --shadow-soft: 0 10px 30px rgba(15, 22, 28, 0.05);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #fafaf8 0%, #f6f7f4 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.topbar {
  background: var(--ink);
  color: #eef4f5;
  font-size: 0.93rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .container {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--brand);
  font-weight: 700;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 1rem;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #eef4f5;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  transition: 0.2s ease;
}

.language-switcher a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.language-switcher a.active {
  background: var(--brand);
  color: var(--ink);
  border-color: var(--brand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 248, 248, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(31, 35, 40, 0.1);
  box-shadow: 0 8px 24px rgba(15, 22, 28, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.logo img {
  height: 54px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: #353c44;
  font-weight: 700;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a:hover:not(.btn)::after,
.nav-links a.active:not(.btn)::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid rgba(134, 223, 238, 0.45);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ink), #2a3138);
  color: #ffffff !important;
  border-color: rgba(22, 25, 29, 0.95);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(22, 25, 29, 0.18);
  background: linear-gradient(135deg, #0f1317, #222b33);
  color: #ffffff !important;
}

.btn-primary:visited,
.btn-primary:active {
  color: #ffffff !important;
}

.btn-secondary {
  background: #edf9fc;
  border-color: rgba(100, 207, 227, 0.42);
  color: var(--brand-deep) !important;
  box-shadow: 0 6px 16px rgba(15, 22, 28, 0.04);
}

.btn-secondary:hover {
  background: #dff5fa;
  border-color: rgba(100, 207, 227, 0.65);
  color: #14323a !important;
}

.btn-secondary:visited,
.btn-secondary:active {
  color: var(--brand-deep) !important;
}

.hero {
  padding: 5rem 0 3.8rem;
  background:
    radial-gradient(circle at top right, rgba(134, 223, 238, 0.18), transparent 28%),
    linear-gradient(180deg, #fbfbf9 0%, #f2f5f3 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.3rem;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  background: rgba(134, 223, 238, 0.12);
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.86rem;
  border: 1px solid rgba(100, 207, 227, 0.26);
}

.hero h1,
.page-hero h1,
.section-header h2,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
  margin: 0.9rem 0 1rem;
  font-weight: 600;
  color: var(--ink);
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.hero-card,
.card,
.image-card,
.contact-card,
.service-card,
.bio-card,
.faq-card,
.notice {
  background: var(--surface);
  border: 1px solid rgba(31, 35, 40, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff, #f8faf9);
}

.hero-card img,
.image-card img,
.bio-card img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 10px);
  object-fit: cover;
}

.hero-card figcaption {
  font-size: 0.94rem;
  color: var(--muted);
  padding: 0.8rem 0.3rem 0.2rem;
}

.placeholder-badge {
  display: inline-block;
  margin-top: 0.4rem;
  background: rgba(134, 223, 238, 0.12);
  color: var(--brand-deep);
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.section {
  padding: 4.4rem 0;
}

.section-header {
  margin-bottom: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
  color: var(--ink);
  font-weight: 600;
}

.section-header p {
  color: var(--muted);
  max-width: 62ch;
  margin: 0;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

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

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

.card,
.service-card,
.faq-card,
.contact-card,
.bio-card {
  padding: 1.45rem;
}

.card h3,
.service-card h3,
.faq-card h3,
.bio-card h3,
h3 {
  margin: 0.1rem 0 0.6rem;
  font-size: 1.2rem;
  color: var(--ink);
}

.muted {
  color: var(--muted);
}

.list {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.list li {
  margin: 0.4rem 0;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(134, 223, 238, 0.12);
  border: 1px solid rgba(100, 207, 227, 0.25);
  color: var(--brand-deep);
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.band {
  background: linear-gradient(135deg, #1a2027, #2a333c);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  inset: auto auto -40px -20px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(134, 223, 238, 0.14), transparent 65%);
}

.band .container {
  position: relative;
  z-index: 1;
}

.band .muted,
.band p {
  color: rgba(255, 255, 255, 0.9);
}

.band .card {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(134, 223, 238, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.band .feature-icon {
  background: rgba(134, 223, 238, 0.22);
  color: #ffffff;
  border-color: rgba(134, 223, 238, 0.3);
}

.band .card h3 {
  color: #effcff;
  font-weight: 800;
}

.band .card p {
  color: rgba(255, 255, 255, 0.97);
}

.band .section-header h2 {
  color: #ffffff;
}

.band .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.band .btn-secondary {
  background: #f3fbfd;
  border-color: rgba(134, 223, 238, 0.45);
  color: #173740 !important;
}

.band .btn-secondary:hover {
  background: #dff8fc;
  border-color: rgba(134, 223, 238, 0.65);
  color: #112d34 !important;
}

.page-hero {
  padding: 3.7rem 0 3rem;
  background: linear-gradient(180deg, #fafaf8 0%, #f0f4f2 100%);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  font-size: 0.92rem;
  color: var(--silver-deep);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  transition: 0.2s ease;
  background: linear-gradient(180deg, #ffffff, #fbfbfa);
}

.service-card:hover,
.card:hover,
.contact-card:hover,
.bio-card:hover,
.image-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(15, 22, 28, 0.1);
}

.image-card {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfbfa);
}

.image-card .content {
  padding: 1rem 1.1rem 1.2rem;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

.notice {
  padding: 1rem 1.1rem;
  background: #fbfcfa;
  border-color: rgba(100, 207, 227, 0.25);
  border-left: 4px solid var(--brand);
}

.notice strong {
  color: var(--ink);
}

.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #171b20, #27333b);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.cta-box p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.2rem;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
}

.contact-item strong {
  display: block;
  color: var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--ink);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: #ffffff;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--brand-strong);
  box-shadow: 0 0 0 4px rgba(134, 223, 238, 0.15);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.small {
  font-size: 0.88rem;
  color: var(--muted);
}

.footer {
  padding: 2.8rem 0 3rem;
  background: #11151a;
  color: #ecf0f1;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1.5rem;
}

.footer a {
  color: #ecf0f1;
  opacity: 0.94;
}

.footer h4 {
  margin: 0.1rem 0 0.8rem;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.footer p,
.footer li {
  color: rgba(236, 240, 241, 0.8);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.disclaimer {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(236, 240, 241, 0.12);
  font-size: 0.9rem;
  color: rgba(236, 240, 241, 0.72);
}

.spacer-sm {
  height: 0.5rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-layout,
  .footer-grid,
  .service-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo img {
    height: 48px;
  }
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.3rem;
  }

  .logo img {
    height: 42px;
  }

  .nav-links {
    gap: 0.9rem;
  }

  .btn {
    padding: 0.82rem 1.05rem;
  }

  .language-switcher {
    margin-left: 0;
  }
}