:root {
  --bg: #f6f4ee;
  --paper: #fffdf8;
  --ink: #1f2f2a;
  --muted: #66716c;
  --green: #1f4c43;
  --green-deep: #153831;
  --blue-muted: #526f78;
  --accent: #b98b52;
  --line: #dfd8ca;
  --shadow: 0 20px 50px rgba(31, 47, 42, 0.08);
  --radius: 8px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.74), rgba(246, 244, 238, 0) 420px),
    var(--bg);
  color: var(--ink);
  font-family:
    "Noto Sans", Aptos, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(185, 139, 82, 0.38);
  outline-offset: 4px;
}

.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  width: min(100% - 48px, var(--content));
  margin: 0 auto;
  padding: 28px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 640;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 10px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.top-nav a:hover {
  background: rgba(231, 238, 232, 0.76);
  color: var(--green);
}

.language-link {
  margin-left: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  color: var(--green);
  font-weight: 760;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 2px;
}

.top-nav .contact-link {
  justify-content: center;
  width: 36px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.76);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 6px 16px rgba(31, 47, 42, 0.1);
}

.top-nav .contact-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-nav .contact-link-whatsapp {
  background: transparent;
}

.top-nav .contact-link-viber {
  background: transparent;
}

.top-nav .contact-link:hover {
  /* color: #fff; */
  transform: translateY(-1px);
}

.top-nav .contact-link-whatsapp:hover {
  /* background: #0f766b; */
}

.top-nav .contact-link-viber:hover {
  /* background: #574c9b; */
}

.section-band,
.section,
.final-cta,
.site-footer {
  width: min(100% - 48px, var(--content));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  padding-top: clamp(42px, 7vw, 82px);
  padding-bottom: clamp(64px, 8vw, 96px);
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-muted);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-deep);
  font-weight: 680;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 800px;
  font-size: clamp(2.55rem, 5vw, 4.6rem);
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.85rem);
}

h3 {
  font-size: 1.18rem;
}

.lead {
  max-width: 700px;
  margin: 26px 0 0;
  color: #3b4944;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.68;
}

.english-note {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid var(--green);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button.primary {
  background: var(--green);
  color: #fffaf0;
  box-shadow: 0 12px 28px rgba(31, 76, 67, 0.17);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.64);
  color: var(--green);
}

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

.button.primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.hero-visual {
  position: relative;
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(237, 232, 222, 0.84)),
    radial-gradient(circle at 34% 18%, rgba(185, 139, 82, 0.18), transparent 32%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(31, 76, 67, 0.08);
  border-radius: 6px;
}

.memorial-shape {
  position: absolute;
  left: 50%;
  bottom: 98px;
  width: 136px;
  height: 178px;
  border: 2px solid rgba(31, 76, 67, 0.25);
  border-bottom: 0;
  border-radius: 72px 72px 0 0;
  transform: translateX(-50%);
}

.memorial-shape::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 84px;
  height: 1px;
  background: rgba(31, 76, 67, 0.2);
}

.visual-line {
  position: absolute;
  left: 58px;
  right: 58px;
  bottom: 98px;
  height: 2px;
  background: rgba(31, 76, 67, 0.18);
}

.olive-branch {
  position: absolute;
  left: 50%;
  bottom: 60px;
  width: 160px;
  height: 52px;
  transform: translateX(-50%);
}

.olive-branch::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 24px;
  height: 2px;
  background: rgba(82, 111, 120, 0.42);
  transform: rotate(-8deg);
}

.olive-branch span {
  position: absolute;
  width: 30px;
  height: 14px;
  background: rgba(31, 76, 67, 0.5);
  border-radius: 50%;
}

.olive-branch span:nth-child(1) {
  left: 22px;
  top: 13px;
  transform: rotate(-28deg);
}

.olive-branch span:nth-child(2) {
  left: 55px;
  top: 26px;
  transform: rotate(26deg);
}

.olive-branch span:nth-child(3) {
  left: 91px;
  top: 10px;
  transform: rotate(-26deg);
}

.olive-branch span:nth-child(4) {
  left: 119px;
  top: 23px;
  transform: rotate(24deg);
}

.section {
  padding-top: clamp(64px, 8vw, 90px);
  padding-bottom: clamp(64px, 8vw, 90px);
}

.section-muted {
  width: 100%;
  max-width: none;
  background: #ede8de;
}

.section-muted > * {
  width: min(100% - 48px, var(--content));
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-intro p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.work-image {
  margin: 0;
}

.work-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.work-image figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

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

.services-copy {
  padding: 2px 0 4px;
}

.services-copy p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.services-panel .check-list {
  grid-template-columns: 1fr;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.trust-list p {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 76px;
  margin: 0;
  padding: 18px 18px 18px 44px;
  border: 1px solid rgba(223, 216, 202, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.62);
  color: #3f4c47;
}

.check-list li::before,
.trust-list p::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.note-box,
.price-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.note-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.note-box p {
  margin: 14px 0 0;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 230px;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(223, 216, 202, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.64);
}

.review-card blockquote {
  margin: 0;
  color: #3f4c47;
  font-size: 1rem;
  line-height: 1.62;
}

.review-card figcaption {
  margin-top: 24px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 760;
}

.article-main {
  min-height: 65vh;
}

.article-hero {
  padding-top: clamp(54px, 7vw, 82px);
  padding-bottom: clamp(34px, 5vw, 56px);
}

.article-hero .lead,
.article-header .lead {
  max-width: 780px;
}

.blog-list-section {
  padding-top: 0;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(223, 216, 202, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.64);
}

.article-card h2 {
  margin-top: 8px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.article-card p:not(.article-meta) {
  margin: 16px 0 0;
  color: var(--muted);
}

.article-card .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.article-meta {
  margin: 0;
  color: var(--blue-muted);
  font-size: 0.84rem;
  font-weight: 760;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--green);
  font-weight: 760;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-page {
  width: min(100% - 48px, 850px);
  margin: 0 auto;
  padding-top: clamp(54px, 7vw, 82px);
  padding-bottom: clamp(72px, 9vw, 104px);
}

.article-header {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.article-header .article-meta {
  margin-top: 26px;
}

.article-header h1 {
  margin-top: 12px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.article-body {
  padding-top: 34px;
}

.article-body p {
  margin: 0;
  color: #3f4c47;
  font-size: 1.08rem;
  line-height: 1.78;
}

.article-body p + p {
  margin-top: 22px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(223, 216, 202, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.58);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fffaf0;
  font-size: 0.88rem;
  font-weight: 780;
}

.step p {
  margin: 0;
  color: #3f4c47;
}

.price-section {
  padding-top: clamp(72px, 9vw, 104px);
  padding-bottom: clamp(72px, 9vw, 104px);
}

.price-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1fr);
  gap: 28px 44px;
  align-items: start;
  padding: clamp(28px, 4.5vw, 44px);
}

.price-panel p {
  margin: 0;
  color: #4a5651;
}

.price-panel p:last-child {
  grid-column: 2;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

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

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(31, 47, 42, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.42);
  overflow: hidden;
}

details + details {
  border-top: 1px solid rgba(31, 47, 42, 0.12);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--green-deep);
  font-size: 1.02rem;
  font-weight: 760;
}

details[open] summary {
  padding-bottom: 10px;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
  gap: 36px;
  align-items: center;
  padding-top: clamp(66px, 8vw, 90px);
  padding-bottom: clamp(66px, 8vw, 90px);
}

.final-cta p:not(.eyebrow) {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
}

.final-cta .actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .top-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero,
  .work-grid,
  .price-panel,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
  }

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

  .price-panel p:last-child {
    grid-column: auto;
  }

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

  .final-cta .actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .section-band,
  .section,
  .final-cta,
  .site-footer,
  .site-header,
  .section-muted > * {
    width: min(100% - 36px, var(--content));
  }

  .check-list,
  .steps,
  .reviews-grid,
  .blog-list,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
  }

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

  .nav-contact {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding-top: 22px;
  }

  .top-nav {
    gap: 6px;
    font-size: 0.82rem;
  }

  .top-nav a {
    min-height: 34px;
    padding: 5px 8px;
  }

  .top-nav .contact-link {
    width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
  }

  h1 {
    font-size: 2.24rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .actions,
  .button {
    width: 100%;
  }

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

  .memorial-shape {
    bottom: 76px;
    width: 112px;
    height: 146px;
  }

  .visual-line {
    left: 44px;
    right: 44px;
    bottom: 76px;
  }

  .olive-branch {
    bottom: 38px;
  }

  .note-box,
  .article-card,
  .review-card,
  .step,
  .price-panel {
    padding: 24px;
  }

  .article-page {
    width: min(100% - 36px, 850px);
  }

  summary {
    padding-left: 18px;
    padding-right: 18px;
  }

  details p {
    padding-left: 18px;
    padding-right: 18px;
  }
}
