@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --animate-duration: 1s;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

p {
  font-size: 22px;
  line-height: 36px;
  color: #333333;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

ul {
  padding: 0;
  color: var(--muted);
  list-style: none;
  margin: 0;
}
ul li {
  position: relative;
  margin: 0;
  padding-left: 28px;
  line-height: 40px;
  color: #333333;
  font-size: 20px;
}
ul li:before {
  content: "•";
  position: absolute;
  inset-inline-start: 0;
}

.site-header {
  background: #fff;
  border-bottom: 2px solid rgba(12, 11, 32, 0.15);
}

.nav-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 0;
  background: #111;
  border-radius: 2px;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: inherit;
  padding: 0;
}

.brand-logo {
  width: 227px;
  height: 40px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #333;
  padding: 6px 2px;
  transition: color 0.16s ease;
}

.nav-link:hover {
  color: #082D0F;
}

.nav-link.is-active {
  color: #082D0F;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--alt);
}

.center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 0.706592px 0.706592px -0.625px, rgba(0, 0, 0, 0.07) 0px 1.80656px 1.80656px -1.25px, rgba(0, 0, 0, 0.07) 0px 3.62176px 3.62176px -1.875px, rgba(0, 0, 0, 0.06) 0px 6.8656px 6.8656px -2.5px, rgba(0, 0, 0, 0.05) 0px 13.6468px 13.6468px -3.125px, rgba(0, 0, 0, 0.03) 0px 30px 30px -3.75px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid transparent;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.btn-primary {
  background: #082D0F;
  color: #fff;
  transition: 0.3s ease-in-out;
}
.btn-primary:hover {
  background-color: rgb(48, 135, 201);
  transform: translateY(2px);
}

.btn-secondary {
  background: #e8f5ff;
  color: #0c0b20;
  transition: 0.3s ease-in-out;
  padding: 16px;
  border-radius: 16px;
  box-shadow: none;
}
.btn-secondary:hover {
  background-color: #d6edff;
  transform: translateY(2px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions .btn-secondary {
  padding: 9px 18px;
  border-radius: 8px;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.sec-heading {
  font-size: 40px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #0c0b20;
  line-height: 64px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 64px auto 0;
  max-width: 500px;
}

.card h3 {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #0c0b20;
  line-height: 32px;
  margin-bottom: 8px;
}
.card p {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #333333;
  line-height: 32px;
}

.card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
}

.why-section .heading-img {
  width: 71px;
  margin: 0 auto;
}

.services-section .cards {
  margin-top: 40px;
  max-width: 665px;
}
.services-section ul {
  list-style: none;
  padding: 0;
}
.services-section ul li {
  position: relative;
  text-align: left;
  padding-inline-start: 28px;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 32px;
}
.services-section ul li:before {
  content: "•";
  position: absolute;
  inset-inline-start: 0;
}
.services-section ul li span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.hero {
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f2f9ff 47.7478%, #ffffff 100%);
}

.hero-title {
  color: #0c0b20;
  font-size: 70px;
  line-height: 1.1;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.hero-title .accent {
  color: #082D0F;
}

.hero-text {
  font-size: 22px;
  line-height: 36px;
  margin: 40px 0;
}

.benefits-sec {
  background-color: #f7fcff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  margin-top: 26px;
}

.benefit .benefit-img {
  width: 100%;
  height: auto;
}
.benefit h3 {
  color: #0c0b20;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
}
.benefit ul {
  list-style: none;
  padding: 0;
}
.benefit ul li {
  position: relative;
  text-align: left;
  padding-inline-start: 28px;
  font-size: 22px;
  line-height: 36px;
  color: #333333;
}
.benefit ul li:before {
  content: "•";
  position: absolute;
  inset-inline-start: 0;
}
.benefit ul li span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.form {
  max-width: 720px;
  margin: 26px auto 0;
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(47, 126, 247, 0.45);
}

.process {
  display: flex;
  gap: 80px;
  align-items: center;
}

.process-art {
  max-width: 450px;
}

.process-content {
  flex: 1;
}
.process-content h2 {
  margin-bottom: 24px;
}
.process-content h3 {
  font-size: 30px;
  margin: 40px 0 16px;
  color: #082D0F;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.process-content h5 {
  font-size: 24px;
  color: #333333;
  line-height: 34px;
  margin: 16px 0 24px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-weight: 500;
}

.process-steps {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.step-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(47, 126, 247, 0.12);
  color: var(--blue);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.climate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 16px;
  gap: 40px;
  align-items: center;
}

.climate-art img {
  width: 100%;
}

.climate-content .sec-heading {
  line-height: 48px;
  margin-bottom: 24px;
}

.climate-cards {
  text-align: center;
}

.services-section {
  background-color: #f7fcff;
}

.contact-section .heading-img {
  text-align: center;
}
.contact-section .heading-img img {
  max-width: 60px;
}
.contact-section .contact-form {
  display: grid;
  gap: 22px;
  max-width: 835px;
  margin: 80px auto;
}
.contact-section .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-section .field label {
  display: inline-block;
  font-size: 14px;
  color: #999999;
  margin: 0 0 10px;
}
.contact-section .field input,
.contact-section .field textarea {
  width: 100%;
  border: 1px solid #efefef;
  background: #f3f3f3;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  color: #999;
  outline: none;
}
.contact-section .field input::-moz-placeholder, .contact-section .field textarea::-moz-placeholder {
  color: #9a9a9a;
}
.contact-section .field input::placeholder,
.contact-section .field textarea::placeholder {
  color: #9a9a9a;
}
.contact-section .field textarea {
  min-height: 160px;
  resize: vertical;
}
.contact-section .field input:focus,
.contact-section .field textarea:focus {
  border-color: rgba(47, 126, 247, 0.35);
  box-shadow: none;
  background: #f7faff;
}
.contact-section .consent {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
.contact-section .checkbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #333333;
  font-size: 14px;
}
.contact-section .checkbox input {
  width: 18px;
  height: 18px;
}
.contact-section .checkbox a {
  color: #082D0F;
  text-decoration: none;
}
.contact-section .checkbox a:hover {
  text-decoration: underline;
}
.contact-section .submit-btn {
  border: 0;
  background: #082D0F;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}
.contact-section .submit-btn:hover {
  background: #082D0F;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}
.contact-section .submit-btn:active {
  transform: translateY(1px);
}
@media (max-width: 820px) {
  .contact-section .grid-2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* About hero */
.about-hero {
  position: relative;
  font-size: 0;
}
.about-hero img {
  width: 100%;
  height: 640px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 25%;
     object-position: center 25%;
}
.about-hero:before {
  background-color: #082D0F;
  flex: 0 0 auto;
  height: 100%;
  left: 0px;
  opacity: 0.28;
  overflow: hidden;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 1;
  content: "";
}

/* Intro text */
.about-intro {
  padding: 40px 0 80px;
}
.about-intro h1 {
  font-size: 50px;
  color: #0c0b20;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 65px;
  margin: 0 0 24px;
}
.about-intro .lead {
  margin: 0 auto 20px;
}
.about-intro .btn-secondary {
  margin-top: 20px;
}

/* Focus grid */
.focus-grid {
  display: grid;
  grid-template-columns: 466px 1fr;
  gap: 40px;
  align-items: center;
}

.focus-art img {
  max-width: 466px;
  margin: 0 auto;
}

.focus-cols {
  flex-direction: column;
  flex: 2 0 0;
  align-items: flex-start;
  gap: 40px;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}
.focus-cols .linkish {
  font-size: 30px;
  margin: 0px 0 16px;
  color: #082D0F;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

/* Experience */
.exp-sec .sec-heading {
  margin: 0 0 40px;
}

.experience {
  max-width: 992px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin: 0 auto;
}

.exp-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
.exp-row .exp-left {
  display: flex;
  justify-content: space-between;
  align-items: self-start;
  padding: 10px 0;
  border-bottom: 1px solid #082D0F;
}

.exp-company {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: #0c0b20;
  margin-bottom: 10px;
}

.exp-role {
  color: #757575;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 32px;
  font-size: 20px;
  font-style: italic;
}

.exp-date {
  color: #757575;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 32px;
  font-size: 20px;
}

.exp-row.is-highlight {
  border-bottom: 2px solid var(--blue);
}

/* Education */
.edu-cards {
  max-width: 722px;
  margin: 40px auto 0;
  display: grid;
  gap: 40px;
}

.edu-card {
  background: #e8f5ff;
  border-radius: 12px;
  padding: 20px 20px 30px;
}

.edu-icon {
  max-width: 60px;
  margin: 0 auto 20px;
  font-size: 0;
}

.edu-date {
  color: #757575;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 32px;
  font-size: 20px;
}

.edu-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: #0c0b20;
  margin: 10px 0;
}

.edu-org {
  color: #757575;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
  font-style: italic;
}

/* Skills */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
  text-align: left;
}

.skill-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}
.skill-card h3 {
  font-size: 25px;
  color: #0c0b20;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 16px;
}

.skill-icon {
  width: 294px;
  height: auto;
  margin: 0 auto 24px;
}

/* Languages */
.lang-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.lang-content .sec-heading {
  display: flex;
  align-items: center;
  justify-content: end;
}

.lang-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lang-name {
  font-size: 25px;
  color: #0c0b20;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 16px;
}

.lang-level {
  font-size: 16px;
  color: #000000;
}

/* CTA */
.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-img {
  position: relative;
  font-size: 0;
}
.cta-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 452px;
}
.cta-img:before {
  background-color: #082D0F;
  flex: 0 0 auto;
  height: 100%;
  left: 0px;
  opacity: 0.28;
  overflow: hidden;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 1;
  content: "";
}

.cta-content img {
  max-width: 50px;
}
.cta-content h2 {
  font-size: 40px;
  color: #0c0b20;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 48px;
  margin: 16px 0 24px;
}
.cta-content p {
  margin-bottom: 40px;
}

.contact-page {
  padding: 80px 0;
}
.contact-page .section {
  padding: 0;
}
.contact-page .heading-img,
.contact-page h2 {
  display: none;
}
.contact-page .sec-heading {
  font-size: 50px;
}

.contact-map {
  font-size: 0;
}

.contact-direct {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 30px;
}

.contact-direct__item {
  display: block;
  text-decoration: none;
  background: linear-gradient(160deg, #f7fcff 0%, #eaf6ff 100%);
  border: 1px solid #c7e5ff;
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: 0 1px 1px rgba(12, 11, 32, 0.04), 0 12px 28px rgba(56, 160, 237, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
  overflow: hidden;
  min-height: 152px;
}

.contact-direct__item:hover {
  border-color: #8dcbf7;
  transform: translateY(-2px);
  box-shadow: 0 2px 2px rgba(12, 11, 32, 0.06), 0 18px 34px rgba(56, 160, 237, 0.18);
}

.contact-direct__actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.contact-direct__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #b4daf8;
  background: #fff;
  color: #0c0b20;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: 0.18s ease;
}

.contact-direct__btn:hover {
  border-color: #8dcbf7;
  background: #f5fbff;
}

.contact-direct__btn--primary {
  background: #082D0F;
  border-color: #082D0F;
  color: #fff;
}

.contact-direct__btn--primary:hover {
  background: #061F0A;
  border-color: #061F0A;
}

.contact-direct__btn.is-copied {
  border-color: #86ca9d;
  background: #f0fff5;
}

.contact-direct__item:before {
  content: "";
  position: absolute;
  top: -52px;
  right: -52px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(56, 160, 237, 0.12);
}

.contact-direct__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 86px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(56, 160, 237, 0.26);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f4f83;
  margin-bottom: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.contact-direct__value {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1.18;
  color: #0c0b20;
  max-width: 100%;
  word-break: break-word;
}

.contact-booking {
  background: #f7fcff;
}

.contact-booking__wrap {
  max-width: 980px;
  margin: 0 auto;
}

.contact-booking__wrap .sec-heading {
  margin-bottom: 10px;
}

.contact-booking__wrap p {
  margin-bottom: 24px;
}

.contact-booking__embed {
  border: 1px solid rgba(12, 11, 32, 0.15);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.contact-booking__fallback {
  margin-top: 18px;
}

.site-footer {
  background: #fff;
  padding: 80px 0 40px;
  border-top: 2px solid rgba(12, 11, 32, 0.15);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
}

.footer-logo {
  width: 182px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-brand-text {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer-address {
  margin-top: 16px;
  font-size: 22px;
  line-height: 36px;
  color: #333333;
}

.footer-contact {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #333333;
  font-size: 22px;
}

.footer-contact-item .icon {
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.footer-contact-item .icon img {
  width: 100%;
  height: 100%;
}

/* Right nav */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
  margin-top: 14px;
}

.footer-link {
  font-size: 22px;
  text-decoration: none;
  color: #333333;
  line-height: 36px;
}

.footer-link.is-active,
.footer-link:hover {
  text-decoration: underline;
}

/* Bottom row */
.footer-bottom {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 20px;
  text-decoration: none;
  color: #333333;
  line-height: 24px;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-copy {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #757575;
}

.copy-icon {
  color: #757575;
}

.legal-page {
  padding: 80px 16px 160px;
}
.legal-page .sec-heading {
  margin: 0 0 24px;
}

.legal-content {
  margin: 0 auto;
  text-align: center;
  font-size: 22px;
  line-height: 36px;
  color: #333333;
}
.legal-content p {
  margin: 0 0 34px;
}
.legal-content .legal-note {
  font-size: 16px;
  line-height: 26px;
  color: #333333;
  margin: 0 auto 18px;
}

.legal-content a {
  color: #333333;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* Smaller lines near bottom like screenshot */
@media (max-width: 720px) {
  .legal-title {
    font-size: 40px;
  }
  .legal-content {
    font-size: 18px;
  }
  .legal-note {
    font-size: 14px;
  }
}
.legal-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 24px 90px;
}
.legal-wrap .sec-heading {
  text-align: center;
  margin-bottom: 40px;
}
.legal-wrap .legal-toc {
  margin: 0 0 48px;
  font-size: 30px;
  color: #333333;
}
.legal-wrap .legal-toc-title {
  margin-bottom: 24px;
  line-height: 40px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.legal-wrap .legal-toc ol {
  margin: 0;
  padding-left: 30px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 25px;
  display: grid;
  gap: 16px;
}
.legal-wrap .legal-toc ol a {
  text-decoration: none;
  color: #333333;
}
.legal-wrap .legal-content {
  line-height: 1.8;
  color: #1f2937;
  font-size: 15px;
  text-align: left;
}
.legal-wrap .legal-content h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #0c0b20;
  margin: 40px 0 24px;
  line-height: 40px;
}
.legal-wrap .legal-content h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: #0c0b20;
  margin: 24px 0 8px;
  line-height: 33px;
}
.legal-wrap .legal-content h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #0c0b20;
  margin: 20px 0 0;
  line-height: 28px;
}
.legal-wrap .legal-content p,
.legal-wrap .legal-content ul,
.legal-wrap .legal-content ol {
  margin: 10px 0;
}
.legal-wrap .legal-content a {
  color: #367cb3;
  text-decoration: none;
}
.legal-wrap .legal-content a:hover {
  text-decoration: underline;
}

.to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  left: calc(89.1667% - 50px);
  position: fixed;
  top: calc(83.75% - 50px);
  width: 100px;
  z-index: 1;
  background-color: rgb(255, 255, 255);
  border-radius: 100px;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 0px 20px 0px;
  transition: 0.3s all;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.to-top:hover {
  transform: translate(0, 10px);
}
.to-top span {
  border: solid #082D0F;
  border-width: 0 7px 7px 0;
  display: inline-block;
  padding: 10px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  border-radius: 4px;
  margin-top: 10px;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.js-anim {
  opacity: 0;
}

.js-anim.is-visible {
  opacity: 1;
}

@media (max-width: 1023px) {
  .section {
    padding: 40px 0;
  }
  .sec-heading {
    line-height: 52px;
  }
  .hero-title {
    font-size: 52px;
  }
  .hero-text {
    margin: 28px 0;
  }
  .cards {
    margin: 20px auto 0;
  }
  .footer-nav {
    text-align: left;
  }
  .footer-contact-item {
    font-size: 20px;
  }
  .footer-legal a {
    font-size: 18px;
  }
  .focus-grid {
    grid-template-columns: 1fr;
  }
  .skill-card {
    min-width: 100%;
  }
  .skill-card h3 {
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 12px;
  }
  .cta {
    grid-template-columns: 1fr;
  }
  .about-hero img {
    height: 400px;
  }
  .about-intro h1 {
    font-size: 40px;
    line-height: 52px;
  }
  .focus-art {
    text-align: center;
  }
  .climate {
    grid-template-columns: 1fr;
  }
  .climate-art {
    max-width: 520px;
    margin: 0 auto;
  }
  .climate-content {
    margin-bottom: 40px;
  }
  .process {
    flex-direction: column;
  }
  .process-art {
    max-width: 100%;
  }
  .cards-3 {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-art {
    justify-self: start;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .benefit {
    text-align: center;
  }
  .benefit > div {
    text-align: left;
  }
  .benefit .benefit-img {
    width: 500px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .site-footer {
    padding: 40px 0;
  }
  .contact-page {
    padding: 40px 0;
  }
  .contact-direct {
    gap: 16px;
  }
  .contact-direct__item {
    padding: 20px;
    min-height: 138px;
  }
  .contact-direct__value {
    font-size: 30px;
  }
  .contact-section .contact-form {
    margin: 40px auto;
  }
  .contact-booking__embed iframe {
    height: 720px;
  }
  .legal-page {
    padding: 80px 16px;
  }
  .legal-wrap {
    padding: 40px 24px 80px;
  }
  .skills-grid {
    gap: 8px;
  }
  .exp-company {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  ul li {
    line-height: 32px;
  }
  .footer-address {
    font-size: 20px;
  }
  .footer-link {
    font-size: 20px;
  }
  .hero-title {
    font-size: 36px;
    line-height: 42px;
  }
  .hero-text {
    font-size: 20px;
    line-height: 32px;
    margin: 20px 0;
  }
  .brand {
    padding: 0;
  }
  .brand .brand-logo {
    width: 175px;
    height: 34px;
  }
  p {
    font-size: 20px;
    line-height: 32px;
  }
  .sec-heading {
    font-size: 32px;
    line-height: 42px;
  }
  .process-content h2 {
    margin-bottom: 12px;
  }
  .process-content h3 {
    font-size: 28px;
    margin: 20px 0 8px;
  }
  .benefit h3 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 12px;
  }
  .benefit ul li {
    font-size: 20px;
    line-height: 32px;
  }
  .climate-content .sec-heading {
    line-height: 42px;
    margin-bottom: 12px;
  }
  .about-intro h1 {
    font-size: 32px;
    line-height: 42px;
    margin: 0 0 12px;
  }
  .focus-art img {
    max-width: 100%;
  }
  .focus-cols {
    gap: 20px;
  }
  .focus-cols .linkish {
    font-size: 24px;
    margin: 0px 0 8px;
  }
  .exp-row .exp-left {
    flex-direction: column;
  }
  .lang-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lang-content .sec-heading {
    justify-content: center;
  }
  .lang-name {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .lang-list {
    gap: 20px;
  }
  .cta-img img {
    min-height: 280px;
  }
  .cta-content h2 {
    font-size: 32px;
    line-height: 40px;
    margin: 8px 0 12px;
  }
  .experience {
    gap: 40px;
  }
  .edu-org {
    line-height: 28px;
    font-size: 20px;
  }
  .nav-wrap {
    padding: 12px 16px;
  }
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
  }
  .legal-title {
    font-size: 30px;
  }
  .legal-content {
    font-size: 14px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 70px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    height: 0px;
    transition: 0.4s all;
    border-color: transparent;
    z-index: 9;
    opacity: 0;
  }
  .nav-links a {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-links.is-open {
    height: auto;
    max-height: 280px;
    border-color: #e5e7eb;
    opacity: 1;
  }
  .nav-links.is-open .nav-link.is-active {
    color: #082D0F;
  }
  .contact-page .sec-heading {
    font-size: 32px;
  }
  .contact-direct {
    grid-template-columns: 1fr;
  }
  .contact-direct__item {
    padding: 16px;
    min-height: auto;
  }
  .contact-direct__actions {
    gap: 8px;
    margin-top: 14px;
  }
  .contact-direct__btn {
    height: 38px;
    font-size: 14px;
    padding: 0 12px;
  }
  .contact-direct__value {
    font-size: 24px;
    line-height: 1.22;
  }
  .contact-booking__wrap p {
    margin-bottom: 18px;
  }
  .contact-booking__embed iframe {
    height: 660px;
  }
  .blog-post-content {
    font-size: 18px;
    line-height: 30px;
  }
  .blog-post-content p,
  .blog-post-content li {
    font-size: 20px;
    line-height: 32px;
  }
  .blog-entry {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 0;
  }
  .blog-entry-media img {
    height: 220px;
  }
  .breadcrumb {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .blog-hero-media {
    margin-bottom: 26px;
  }
  .blog-hero-media:before {
    border-radius: 14px;
  }
  .blog-hero-media img {
    max-height: 250px;
    border-radius: 14px;
  }
  .blog-post-header {
    margin-bottom: 24px;
  }
  .blog-post-header .sec-heading {
    line-height: 42px;
  }
  .blog-post-content {
    max-width: 100%;
  }
  .blog-post-content p,
  .blog-post-content li {
    font-size: 20px;
    line-height: 34px;
  }
  .blog-post-content h2 {
    font-size: 32px;
    line-height: 42px;
    margin-top: 34px;
  }
  .blog-post-content h3 {
    font-size: 26px;
    line-height: 36px;
  }
}
.blog-page {
  background: #f8fbff;
}
.blog-header {
  max-width: 880px;
  margin: 0 auto 40px;
  text-align: center;
}
.blog-header p {
  margin-top: 12px;
}
.blog-kicker {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  color: #082D0F;
  margin-bottom: 8px;
}
.blog-feed {
  max-width: 1080px;
  margin: 0 auto;
}
.blog-entry {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(12, 11, 32, 0.15);
}
.blog-entry:first-child {
  border-top: 1px solid rgba(12, 11, 32, 0.15);
}
.blog-entry-media {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #e8f5ff;
}
.blog-entry-media:before {
  background-color: #082D0F;
  content: "";
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.blog-entry-media img {
  display: block;
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  background: #e8f5ff;
}
.blog-entry-body h2 {
  margin: 10px 0 14px;
  line-height: 1.25;
}
.blog-entry-body h2 a {
  text-decoration: none;
  color: #0c0b20;
}
.blog-entry-body h2 a:hover {
  color: #082D0F;
}
.blog-entry-body p {
  margin-bottom: 14px;
}
.blog-entry-link {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #082D0F;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.blog-entry-link:hover {
  border-color: #082D0F;
}
.blog-date {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #4b5563;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-post {
  background: linear-gradient(180deg, #f7fcff 0%, #ffffff 240px);
}
.breadcrumb {
  max-width: 860px;
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 16px;
  color: #757575;
}
.breadcrumb a {
  color: #082D0F;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.blog-hero-media {
  max-width: 1120px;
  margin: 0 auto 34px;
  position: relative;
  background: #e8f5ff;
  border-radius: 18px;
}
.blog-hero-media:before {
  background-color: #082D0F;
  height: 100%;
  left: 0;
  opacity: 0.2;
  position: absolute;
  top: 0;
  width: 100%;
  content: "";
  border-radius: 18px;
  pointer-events: none;
}
.blog-hero-media img {
  width: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
  display: block;
  background: #e8f5ff;
}
.blog-post-header {
  max-width: 860px;
  margin: 0 auto 34px;
}
.blog-post-header .blog-kicker {
  margin-bottom: 10px;
}
.blog-post-header .sec-heading {
  line-height: 56px;
}
.blog-post-content {
  max-width: 860px;
  margin: 0 auto 40px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.blog-post-content p,
.blog-post-content li {
  font-size: 22px;
  line-height: 38px;
  color: #1f2937;
}
.blog-post-content h2 {
  margin: 42px 0 14px;
  font-size: 40px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #0c0b20;
  line-height: 52px;
}
.blog-post-content h3 {
  margin: 28px 0 8px;
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #082D0F;
  line-height: 40px;
}
.blog-post-content p + p {
  margin-top: 16px;
}
.blog-post-content ul {
  margin: 14px 0 8px;
}
.blog-post-content ul li {
  padding-left: 24px;
}
.blog-post .btn-secondary {
  display: inline-flex;
  margin: 0 auto;
}
/*# sourceMappingURL=site.css.map */
