﻿:root {
  --bg: #f5f8f7;
  --surface: #ffffff;
  --surface-soft: #edf4f1;
  --text: #12312c;
  --text-muted: #3a5954;
  --accent: #1f6f64;
  --accent-strong: #155148;
  --line: #d4e3df;
  --focus: #0f5ef2;
  --success: #1f7a4d;
  --radius-lg: 1.25rem;
  --radius-md: 0.9rem;
  --shadow-soft: 0 8px 30px rgba(23, 53, 48, 0.09);
  --shadow-card: 0 12px 35px rgba(14, 39, 35, 0.12);
  --container: min(1140px, calc(100% - 2.2rem));
  --space-1: 0.6rem;
  --space-2: 1rem;
  --space-3: 1.35rem;
  --space-4: 1.8rem;
  --space-5: 2.7rem;
  --space-6: 4.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% -10%, #e6f3ef 0, transparent 45%), var(--bg);
  line-height: 1.6;
  font-size: 1.125rem;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 0.14em;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  margin: 0 0 var(--space-2);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #0f2b26;
}

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.45rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
}

p {
  margin: 0 0 var(--space-2);
  color: var(--text-muted);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  padding: 0.75rem 1rem;
  border: 2px solid var(--focus);
  border-radius: 0.5rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 2000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1500;
  border-bottom: 1px solid rgba(22, 69, 61, 0.1);
  background: rgba(249, 252, 251, 0.98);
}

.site-header .container {
  width: min(1400px, calc(100% - 2rem));
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 5.1rem;
}

.brand {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  width: 5.7rem;
  height: 5.7rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #F9FCFB;
  background: #F9FCFB;
}

.brand-text strong {
  display: block;
  color: var(--text);
  font-size: 1.43rem;
}

.brand-text small {
  display: block;
  color: #58736d;
  font-size: 0.78rem;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.22rem, 0.85vw, 0.75rem);
  flex-wrap: nowrap;
  min-width: 0;
}

.primary-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 0.4rem 0.56rem;
  border-radius: 0.6rem;
  white-space: nowrap;
  font-size: 0.96rem;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: #eaf2ef;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid #c7d9d4;
  border-radius: 0.65rem;
  background: #ffffff;
}

.lang-switch a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  color: #21443e;
  padding: 0.3rem 0.45rem;
  border-radius: 0.45rem;
}

.lang-switch a.active {
  background: #e7f2ef;
}

.phone-link {
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  font-size: 1.02rem;
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.75rem;
  border: 1px solid #bfd4cf;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.23rem auto;
  background: #21433d;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 0.85rem;
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  border: 2px solid transparent;
  min-height: 3.2rem;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(145deg, var(--accent), var(--accent-strong));
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(145deg, #256f65, #12493f);
}

.btn-secondary {
  background: #fff;
  color: var(--accent-strong);
  border-color: #bfdad3;
}

.btn-secondary:hover {
  background: #f1f8f5;
}

.hero {
  padding: var(--space-6) 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-5);
  align-items: center;
}

.eyebrow {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1e6c61;
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
}

.hero-copy p {
  max-width: 64ch;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 1.25rem 0 1rem;
}

.hero-points {
  margin: 0;
  padding-left: 1.1rem;
  color: #30544e;
}

.hero-points li {
  margin-bottom: 0.3rem;
}

.hero-visual {
  position: relative;
}

.visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fafdfe, #ecf4f1);
  border: 1px solid #d2e2de;
  padding: 0.9rem;
  box-shadow: var(--shadow-card);
}

.visual-photo {
  display: block;
  width: 100%;
  min-height: 23rem;
  object-fit: cover;
  border-radius: 0.95rem;
}

.visual-badge {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid #dce9e6;
}

.visual-badge strong {
  display: block;
  font-size: 1.25rem;
  color: #123d36;
}

.visual-badge span {
  font-size: 0.9rem;
  color: #48645f;
}

.section {
  padding: var(--space-6) 0;
}

.section-intro {
  max-width: 70ch;
  margin-bottom: var(--space-4);
}

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

.info-item,
.target-grid article,
.service-card,
.photo-item {
  background: var(--surface);
  border: 1px solid #d7e5e1;
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.info-columns {
  gap: 1.8rem;
}

.info-item {
  border-radius: 0;
  border: 0;
  border-left: 3px solid #c8ddd8;
  box-shadow: none;
  background: transparent;
  padding: 0 0 0 1rem;
}

.documents {
  background: linear-gradient(180deg, #eef5f3, #f8fbfa);
  border-top: 1px solid #dfebe8;
  border-bottom: 1px solid #dfebe8;
}

.doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.2rem;
}

.doc-list a {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #cfe0dc;
  border-radius: 0;
  padding: 1rem 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #113a33;
  font-weight: 700;
}

.doc-list a small {
  font-weight: 600;
  color: #4f6b65;
}

.doc-list a:hover,
.doc-list a:focus-visible {
  border-color: #87afa7;
  background: rgba(255, 255, 255, 0.55);
}

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

.photo-placeholder {
  display: block;
  width: 100%;
  border-radius: 0.8rem;
  height: clamp(12rem, 18vw, 14rem);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

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

.reason-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #d6e4e0;
}

.reason-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid #d6e4e0;
}

.reason-list h3 {
  margin-bottom: 0.35rem;
}

.reason-list p {
  margin: 0;
}

.contact {
  background: #f1f7f5;
  border-top: 1px solid #dbe9e5;
}

.contact-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-phone-note {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f3932;
}

.contact-form {
  background: #fff;
  border: 1px solid #d4e3df;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  margin-bottom: 0.95rem;
}

label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
  color: #163f38;
}

input,
textarea {
  width: 100%;
  border: 2px solid #c2d9d3;
  border-radius: 0.8rem;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: #11352f;
  background: #fcfefe;
}

textarea {
  resize: vertical;
}

.btn-full {
  width: 100%;
}

.form-help {
  margin: 0.9rem 0 0;
  color: #49645f;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 0.7rem;
  font-weight: 700;
  color: var(--success);
}

.site-footer {
  background: #102b27;
  color: #d5e7e2;
  padding-top: 3rem;
}

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

.site-footer a,
.site-footer p {
  color: #d5e7e2;
}

.footer-title {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.06rem;
  color: #f0f8f5;
  margin-bottom: 0.65rem;
}

.footer-bottom {
  border-top: 1px solid rgba(217, 236, 230, 0.22);
  margin-top: 1.8rem;
  padding: 1rem 0 1.5rem;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

@media (max-width: 1030px) {
  .header-inner {
    grid-template-columns: auto auto 1fr auto;
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f8fcfb;
    border-bottom: 1px solid #d9e8e4;
    padding: 0.8rem var(--space-2) 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    width: 100%;
    padding: 0.6rem 0.7rem;
  }

  .hero-grid,
  .contact-grid,
  .photo-grid,
  .info-columns,
  .target-grid,
  .footer-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .visual-photo {
    min-height: 17rem;
  }

  .header-cta .phone-link {
    display: none;
  }
}

@media (max-width: 1500px) {
  .brand-text small {
    display: none;
  }

  .header-cta .phone-link {
    display: none;
  }
}

@media (min-width: 1041px) {
  .header-cta .btn {
    min-height: 2.72rem;
    padding: 0.7rem 1.05rem;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1140px, calc(100% - 1.2rem));
  }

  body {
    font-size: 1.04rem;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    gap: 0.55rem;
    min-height: 4.8rem;
  }

  .brand-text small {
    display: none;
  }

  .btn {
    width: 100%;
  }

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

  .header-cta {
    position: fixed;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    z-index: 1400;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .header-cta .btn {
    width: 100%;
    box-shadow: 0 10px 25px rgba(8, 38, 33, 0.25);
  }

  .lang-switch {
    position: fixed;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 1601;
    justify-self: auto;
  }

  .section {
    padding: 3.4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
