:root {
    --bg: #f4f1ea;
    --bg-soft: #ebe4d8;
    --surface: #fffaf2;
    --surface-2: #e4ddd0;
    --surface-3: #f8f3ea;
    --text: #263238;
    --text-deep: #172025;
    --muted: #6f7a7d;
    --accent: #2f7d73;
    --accent-dark: #215b54;
    --accent-warm: #c98743;
    --accent-warm-soft: #f2d7b0;
    --line: rgba(38, 50, 56, 0.14);
    --line-strong: rgba(38, 50, 56, 0.22);
    --shadow: 0 24px 70px rgba(38, 50, 56, 0.11);
    --shadow-soft: 0 14px 38px rgba(38, 50, 56, 0.08);
    --radius-lg: 34px;
    --radius-md: 24px;
    --radius-sm: 16px;
    --container: 1160px;
    --font-heading: "Fraunces", Georgia, serif;
    --font-body: "Sora", Arial, sans-serif;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
      radial-gradient(circle at 8% 8%, rgba(201, 135, 67, 0.12), transparent 32%),
      radial-gradient(circle at 88% 14%, rgba(47, 125, 115, 0.12), transparent 34%),
      linear-gradient(180deg, #f6f2ea 0%, #efe8dc 48%, #f7f1e8 100%);
    overflow-x: hidden;
  }
  
  body.nav-open {
    overflow: hidden;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button,
  input,
  textarea {
    font: inherit;
  }
  
  button {
    cursor: pointer;
  }
  
  ::selection {
    color: #fffaf2;
    background: var(--accent);
  }
  
  .container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
  }
  
  .section {
    position: relative;
    padding: 112px 0;
  }
  
  .section-heading {
    max-width: 760px;
    margin-bottom: 46px;
  }
  
  .section-heading.centered {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }
  
  .section-heading h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 5vw, 4.7rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: var(--text-deep);
  }
  
  .section-heading p {
    margin: 20px 0 0;
    max-width: 660px;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--muted);
  }
  
  .section-heading.centered p {
    margin-inline: auto;
  }
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 18px 0;
    background: rgba(244, 241, 234, 0.78);
    border-bottom: 1px solid rgba(38, 50, 56, 0.08);
    backdrop-filter: blur(18px);
  }
  
  .header-inner {
    width: min(calc(100% - 40px), 1240px);
    margin: 0 auto;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }
  
  .brand {
    display: flex;
    align-items: center;
    width: 190px;
    min-width: 190px;
  }
  
  .brand img {
    width: 190px;
    height: auto;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 250, 242, 0.72);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(38, 50, 56, 0.04);
  }
  
  .main-nav a {
    padding: 11px 16px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--muted);
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  }
  
  .main-nav a:hover {
    color: var(--text-deep);
    background: rgba(47, 125, 115, 0.1);
    transform: translateY(-1px);
  }
  
  .menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    position: relative;
  }
  
  .menu-toggle span {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 2px;
    background: var(--text-deep);
    border-radius: 10px;
    transition: transform 0.25s ease, top 0.25s ease;
  }
  
  .menu-toggle span:first-child {
    top: 18px;
  }
  
  .menu-toggle span:last-child {
    top: 28px;
  }
  
  body.nav-open .menu-toggle span:first-child {
    top: 23px;
    transform: rotate(45deg);
  }
  
  body.nav-open .menu-toggle span:last-child {
    top: 23px;
    transform: rotate(-45deg);
  }
  
  .hero-section {
    min-height: calc(100vh - 104px);
    display: flex;
    align-items: center;
    padding: 116px 0 96px;
  }
  
  .hero-container {
    position: relative;
  }
  
  .hero-container::before,
  .hero-container::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(2px);
  }
  
  .hero-container::before {
    width: 180px;
    height: 180px;
    left: -80px;
    top: -60px;
    background: rgba(47, 125, 115, 0.1);
  }
  
  .hero-container::after {
    width: 240px;
    height: 240px;
    right: -110px;
    bottom: -70px;
    background: rgba(201, 135, 67, 0.12);
  }
  
  .hero-content {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    padding: 82px 58px 72px;
    background:
      linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.66));
    border: 1px solid rgba(38, 50, 56, 0.12);
    border-radius: 44px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  
  .hero-content::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(38, 50, 56, 0.08);
    border-radius: 32px;
    pointer-events: none;
  }
  
  .hero-content::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 16px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-warm), transparent);
    opacity: 0.45;
    filter: blur(12px);
  }
  
  .hero-content h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(3.15rem, 8vw, 7.7rem);
    line-height: 0.91;
    letter-spacing: -0.075em;
    color: var(--text-deep);
  }
  
  .hero-text {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 30px auto 0;
    color: var(--muted);
    font-size: clamp(1.02rem, 2vw, 1.18rem);
    line-height: 1.85;
  }
  
  .hero-tags {
    position: relative;
    z-index: 1;
    margin: 36px auto 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .hero-tags span {
    padding: 14px 20px;
    border: 1px solid rgba(38, 50, 56, 0.13);
    border-radius: 999px;
    background: rgba(244, 241, 234, 0.76);
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(38, 50, 56, 0.05);
  }
  
  .main-button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    color: #fffaf2;
    font-weight: 700;
    box-shadow: 0 18px 34px rgba(47, 125, 115, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }
  
  .main-button:hover {
    transform: translateY(-2px);
    background: var(--accent-dark);
    box-shadow: 0 22px 44px rgba(47, 125, 115, 0.29);
  }
  
  .services-section {
    background: rgba(255, 250, 242, 0.34);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .service-card {
    min-height: 250px;
    padding: 30px;
    background: rgba(255, 250, 242, 0.78);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }
  
  .service-card h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    line-height: 1.05;
    letter-spacing: -0.045em;
    color: var(--text-deep);
  }
  
  .service-card p {
    margin: 20px 0 0;
    color: var(--muted);
    line-height: 1.72;
    font-size: 0.94rem;
  }
  
  .service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(47, 125, 115, 0.28);
    background: rgba(255, 250, 242, 0.96);
  }
  
  .needs-section {
    overflow: hidden;
  }
  
  .needs-list {
    display: grid;
    gap: 20px;
  }
  
  .need-item {
    display: grid;
    grid-template-columns: 0.9fr 1.35fr;
    gap: 28px;
    align-items: stretch;
    padding: 20px;
    background: rgba(255, 250, 242, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
  }
  
  .need-quote {
    min-height: 190px;
    padding: 34px;
    display: flex;
    align-items: center;
    border-radius: 26px;
    background:
      linear-gradient(135deg, rgba(47, 125, 115, 0.13), rgba(201, 135, 67, 0.12));
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    color: var(--text-deep);
  }
  
  .need-answer {
    padding: 28px 22px 28px 0;
    align-self: center;
  }
  
  .need-answer h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: var(--text-deep);
  }
  
  .need-answer p {
    margin: 18px 0 0;
    max-width: 640px;
    color: var(--muted);
    line-height: 1.8;
  }
  
  .focus-section {
    background: linear-gradient(180deg, rgba(235, 228, 216, 0.4), rgba(255, 250, 242, 0.26));
  }
  
  .focus-panel {
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    gap: 24px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 38px;
    background: rgba(255, 250, 242, 0.76);
    box-shadow: var(--shadow);
  }
  
  .focus-copy {
    padding: 38px;
    border-radius: 28px;
    background: var(--accent);
    color: #fffaf2;
  }
  
  .focus-copy h3 {
    margin: 0;
    max-width: 460px;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
  }
  
  .focus-copy p {
    margin: 24px 0 0;
    color: rgba(255, 250, 242, 0.82);
    line-height: 1.8;
  }
  
  .focus-tags {
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 28px;
  }
  
  .focus-tags span {
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(244, 241, 234, 0.86);
    border: 1px solid var(--line);
    color: var(--text);
    font-size: 0.93rem;
    font-weight: 650;
  }
  
  .reviews-section {
    overflow: hidden;
  }
  
  .reviews-carousel {
    position: relative;
    margin-top: 8px;
    overflow: hidden;
    border-radius: 34px;
    padding: 8px 0;
  }
  
  .reviews-carousel::before,
  .reviews-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 2;
    width: 90px;
    height: 100%;
    pointer-events: none;
  }
  
  .reviews-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #f4f1ea, transparent);
  }
  
  .reviews-carousel::after {
    right: 0;
    background: linear-gradient(270deg, #f4f1ea, transparent);
  }
  
  .reviews-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: reviewsMove 34s linear infinite;
  }
  
  .reviews-carousel:hover .reviews-track {
    animation-play-state: paused;
  }
  
  .review-card {
    width: 360px;
    min-height: 245px;
    flex: 0 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 18px;
    background: rgba(255, 250, 242, 0.82);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
  }
  
  .review-card img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--surface-2);
    border: 4px solid rgba(255, 250, 242, 0.9);
    box-shadow: 0 10px 28px rgba(38, 50, 56, 0.12);
  }
  
  .review-card h3 {
    margin: 2px 0 0;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text-deep);
  }
  
  .review-card p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.68;
    font-size: 0.91rem;
  }
  
  .review-card span {
    display: block;
    margin-top: 16px;
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  
  @keyframes reviewsMove {
    from {
      transform: translateX(0);
    }
  
    to {
      transform: translateX(-50%);
    }
  }
  
  .contact-section {
    padding-bottom: 130px;
  }
  
  .contact-container {
    max-width: 920px;
  }
  
  .contact-form {
    position: relative;
    margin: 46px auto 0;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 36px;
    background: rgba(255, 250, 242, 0.82);
    box-shadow: var(--shadow);
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 16px;
  }
  
  .contact-form span {
    display: block;
    margin: 0 0 9px 4px;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 800;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px 17px;
    outline: none;
    background: rgba(244, 241, 234, 0.76);
    color: var(--text-deep);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 170px;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: rgba(47, 125, 115, 0.5);
    box-shadow: 0 0 0 4px rgba(47, 125, 115, 0.1);
    background: #fffaf2;
  }
  
  .hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
  }
  
  .form-button {
    margin: 10px auto 0;
    display: flex;
    min-width: 190px;
  }
  
  .form-button.is-loading {
    opacity: 0.72;
    pointer-events: none;
  }
  
  .form-popup {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 36px;
    background: rgba(244, 241, 234, 0.72);
    backdrop-filter: blur(10px);
  }
  
  .form-popup.is-visible {
    display: flex;
  }
  
  .form-popup-box {
    position: relative;
    width: min(100%, 430px);
    padding: 34px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  
  .form-popup-box h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--text-deep);
  }
  
  .form-popup-box p {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.7;
  }
  
  .popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(244, 241, 234, 0.85);
    color: var(--text);
    font-size: 1.35rem;
    line-height: 1;
  }
  
  .form-popup.is-success .form-popup-box {
    border-color: rgba(47, 125, 115, 0.36);
  }
  
  .form-popup.is-error .form-popup-box {
    border-color: rgba(201, 83, 67, 0.36);
  }
  
  .site-footer {
    padding: 44px 0;
    background: rgba(255, 250, 242, 0.72);
    border-top: 1px solid var(--line);
  }
  
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr 0.8fr;
    gap: 32px;
    align-items: center;
  }
  
  .footer-brand img {
    width: 160px;
  }
  
  .footer-brand p,
  .footer-data p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.88rem;
  }
  
  .footer-data p:first-child {
    margin-top: 0;
    color: var(--text-deep);
    font-weight: 750;
  }
  
  .footer-links {
    display: grid;
    justify-items: end;
    gap: 10px;
  }
  
  .footer-links a {
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 750;
  }
  
  .footer-links a:hover {
    color: var(--accent-warm);
  }
  
  @media (max-width: 980px) {
    .section {
      padding: 86px 0;
    }
  
    .main-nav {
      position: fixed;
      left: 20px;
      right: 20px;
      top: 100px;
      display: grid;
      gap: 8px;
      padding: 18px;
      border-radius: 26px;
      background: rgba(255, 250, 242, 0.96);
      box-shadow: var(--shadow);
      transform: translateY(-14px);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }
  
    body.nav-open .main-nav {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
  
    .main-nav a {
      text-align: center;
      padding: 15px;
    }
  
    .menu-toggle {
      display: inline-flex;
    }
  
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .need-item,
    .focus-panel,
    .footer-inner {
      grid-template-columns: 1fr;
    }
  
    .need-answer {
      padding: 10px 8px 16px;
    }
  
    .footer-links {
      justify-items: start;
    }
  }
  
  @media (max-width: 680px) {
    .container,
    .header-inner {
      width: min(calc(100% - 28px), var(--container));
    }
  
    .brand {
      width: 156px;
      min-width: 156px;
    }
  
    .brand img {
      width: 156px;
    }
  
    .site-header {
      padding: 12px 0;
    }
  
    .section {
      padding: 72px 0;
    }
  
    .hero-section {
      min-height: auto;
      padding: 48px 0 70px;
    }
  
    .hero-content {
        padding: 54px 22px 50px;
        border-radius: 30px;
      }
  
    .hero-content::before {
      inset: 10px;
      border-radius: 23px;
    }
  
    .hero-content h1 {
      font-size: clamp(3rem, 17vw, 4.7rem);
    }
  
    .hero-tags {
      gap: 9px;
    }
  
    .hero-tags span {
      width: 100%;
      padding: 13px 16px;
    }
  
    .section-heading h2 {
      font-size: clamp(2.5rem, 14vw, 3.8rem);
    }
  
    .services-grid,
    .form-grid {
      grid-template-columns: 1fr;
    }
  
    .service-card {
      min-height: 230px;
      padding: 24px;
    }
  
    .need-item {
      padding: 14px;
      border-radius: 28px;
    }
  
    .need-quote {
      min-height: 150px;
      padding: 24px;
      border-radius: 22px;
    }
  
    .focus-panel,
    .contact-form {
      padding: 18px;
      border-radius: 28px;
    }
  
    .focus-copy {
      padding: 28px;
      border-radius: 22px;
    }
  
    .focus-tags {
      padding: 16px 4px 4px;
    }
  
    .review-card {
      width: 310px;
      grid-template-columns: 60px 1fr;
      padding: 20px;
    }
  
    .review-card img {
      width: 60px;
      height: 60px;
    }
  
    .reviews-carousel::before,
    .reviews-carousel::after {
      width: 40px;
    }
  
    .footer-brand img {
      width: 150px;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
  
    *,
    *::before,
    *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
    }
  
    .reviews-track {
      animation: none;
    }
  }

  .policy-section {
    padding-top: 96px;
  }
  
  .policy-container {
    max-width: 940px;
  }
  
  .policy-section .section-heading h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6.6rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
    color: var(--text-deep);
  }
  
  .policy-content {
    padding: 44px;
    border: 1px solid var(--line);
    border-radius: 36px;
    background: rgba(255, 250, 242, 0.82);
    box-shadow: var(--shadow);
  }
  
  .policy-updated {
    margin-top: 0;
    color: var(--accent-dark);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  
  .policy-content h2 {
    margin: 42px 0 14px;
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    color: var(--text-deep);
  }
  
  .policy-content p,
  .policy-content li {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.82;
  }
  
  .policy-content p {
    margin: 0 0 16px;
  }
  
  .policy-content ul {
    margin: 0 0 18px;
    padding-left: 22px;
  }
  
  .policy-content a {
    color: var(--accent-dark);
    font-weight: 750;
    border-bottom: 1px solid rgba(47, 125, 115, 0.28);
  }
  
  .policy-content a:hover {
    color: var(--accent-warm);
    border-color: rgba(201, 135, 67, 0.4);
  }
  
  .policy-back {
    margin-top: 42px;
    display: flex;
    justify-content: center;
  }
  
  .policy-nav {
    width: auto;
  }
  
  @media (max-width: 680px) {
    .policy-content {
      padding: 24px;
      border-radius: 28px;
    }
  }