:root {
      --ink: #262626;
      --muted: #686a6d;
      --soft: #f7f4ef;
      --line: #e7e0d6;
      --brand: #424242;
      --gold: #d6c0a5;
      --gold-dark: #9b7a54;
      --green: #446052;
      --white: #ffffff;
      --shadow: 0 18px 54px rgba(38, 38, 38, 0.12);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background: var(--soft);
      color: var(--ink);
      font-family: Inter, Arial, sans-serif;
    }

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

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

    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(66, 66, 66, 0.96);
      color: var(--white);
      border-bottom: 1px solid rgba(214, 192, 165, 0.24);
      backdrop-filter: blur(16px);
    }

    .nav {
      width: min(1180px, calc(100% - 40px));
      height: 76px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border: 2px solid var(--gold);
      display: grid;
      place-items: center;
      font-size: 13px;
      color: var(--gold);
    }

    .navlinks {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 14px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 13px;
      font-weight: 600;
    }

    .navlinks a {
      white-space: nowrap;
    }

    .navlinks .active {
      color: var(--ink);
      background: var(--gold);
      padding: 10px 12px;
      border-radius: 4px;
    }

    .menu-toggle {
      width: 44px;
      height: 44px;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      border: 1px solid rgba(214, 192, 165, 0.42);
      border-radius: 4px;
      background: transparent;
      color: var(--gold);
      cursor: pointer;
    }

    .menu-toggle span {
      width: 19px;
      height: 2px;
      display: block;
      border-radius: 2px;
      background: currentColor;
    }

    .btn {
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid transparent;
      border-radius: 4px;
      padding: 13px 18px;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--ink);
    }

    .btn-dark {
      background: var(--brand);
      color: var(--white);
    }

    .btn-outline {
      border-color: rgba(255, 255, 255, 0.42);
      color: var(--white);
    }

    .btn-soft {
      border-color: var(--line);
      background: var(--white);
      color: var(--ink);
    }

    .hero {
      background:
        linear-gradient(90deg, rgba(38, 38, 38, 0.86), rgba(38, 38, 38, 0.36)),
        url("/assets/images/site/athrium/gall/bg4.jpg") center / cover;
      color: var(--white);
      min-height: 620px;
      display: flex;
      align-items: flex-end;
    }

    .hero-inner {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 88px 0 64px;
    }

    .breadcrumb {
      color: rgba(255, 255, 255, 0.72);
      font-size: 14px;
      margin-bottom: 30px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 380px;
      gap: 44px;
      align-items: end;
    }

    .eyebrow {
      margin: 0 0 14px;
      color: var(--gold);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    h1 {
      max-width: 770px;
      margin: 0;
      font-size: 58px;
      line-height: 1.02;
      font-weight: 800;
      letter-spacing: 0;
    }

    .lead {
      max-width: 680px;
      margin: 18px 0 0;
      color: rgba(255, 255, 255, 0.84);
      font-size: 19px;
      line-height: 1.55;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .hero-panel {
      border-radius: 8px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.94);
      color: var(--ink);
      box-shadow: var(--shadow);
    }

    .hero-panel-head {
      padding: 24px;
      background: var(--brand);
      color: var(--white);
    }

    .hero-panel-head > span {
      display: block;
      color: var(--gold);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .hero-panel-head strong {
      display: block;
      margin-top: 8px;
      font-size: 25px;
      line-height: 1.15;
    }

    .hero-facts {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1px;
      background: var(--line);
    }

    .hero-fact {
      min-height: 105px;
      padding: 19px;
      background: var(--white);
    }

    .hero-fact small {
      display: block;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .hero-fact strong {
      display: block;
      margin-top: 10px;
      color: var(--brand);
      font-size: 25px;
      line-height: 1.08;
    }

    .main {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 46px 0 82px;
    }

    .section {
      padding: 38px 0;
      border-bottom: 1px solid var(--line);
    }

    .section:first-child {
      padding-top: 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 26px;
    }

    .section h2 {
      margin: 0;
      font-size: 32px;
      line-height: 1.16;
      font-weight: 800;
      letter-spacing: 0;
    }

    .section-head p {
      max-width: 560px;
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.65;
    }

    .offer-list {
      display: grid;
      gap: 22px;
    }

    .offer-card {
      display: grid;
      grid-template-columns: 370px minmax(0, 1fr) 245px;
      gap: 0;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      box-shadow: 0 12px 34px rgba(38, 38, 38, 0.07);
    }

    .offer-media {
      position: relative;
      min-height: 320px;
      background: #ddd;
    }

    .offer-media picture {
      display: block;
      width: 100%;
      height: 100%;
    }

    .offer-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .status {
      position: absolute;
      left: 18px;
      top: 18px;
      border-radius: 4px;
      background: rgba(66, 66, 66, 0.92);
      color: var(--gold);
      padding: 9px 11px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .photo-count {
      position: absolute;
      left: 18px;
      bottom: 18px;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.92);
      padding: 9px 11px;
      color: var(--ink);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .offer-body {
      padding: 27px 28px 24px;
    }

    .offer-location {
      margin-bottom: 10px;
      color: var(--gold-dark);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .offer-body h3 {
      margin: 0;
      font-size: 29px;
      line-height: 1.14;
      font-weight: 800;
      letter-spacing: 0;
    }

    .offer-subtitle {
      margin: 9px 0 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.55;
    }

    .badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .badge {
      display: inline-flex;
      min-height: 34px;
      align-items: center;
      border: 1px solid var(--line);
      border-radius: 4px;
      background: #fbfaf8;
      padding: 8px 10px;
      color: var(--ink);
      font-size: 13px;
      font-weight: 800;
    }

    .offer-description {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.72;
    }

    .feature-line {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 20px;
    }

    .feature {
      min-height: 42px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--ink);
      font-size: 14px;
      font-weight: 700;
    }

    .feature-dot {
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #edf3ef;
      color: var(--green);
      font-size: 12px;
      font-weight: 800;
    }

    .offer-side {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-left: 1px solid var(--line);
      background: #fbfaf8;
      padding: 24px;
    }

    .price-block > span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .price-block strong {
      display: block;
      margin-top: 8px;
      font-size: 25px;
      line-height: 1.14;
    }

    .price-block small {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .side-details {
      display: grid;
      gap: 11px;
      margin: 24px 0;
    }

    .side-detail {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      border-bottom: 1px solid var(--line);
      padding-bottom: 10px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.35;
    }

    .side-detail strong {
      color: var(--ink);
      text-align: right;
    }

    .card-actions {
      display: grid;
      gap: 10px;
    }

    .card-actions .btn {
      width: 100%;
    }

    .join-box {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 240px;
      gap: 24px;
      align-items: center;
      border-radius: 8px;
      background: var(--brand);
      color: var(--white);
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .join-box > div > span {
      display: block;
      color: var(--gold);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .join-box h2 {
      margin: 8px 0 10px;
      font-size: 28px;
    }

    .join-box p {
      margin: 0;
      color: rgba(255, 255, 255, 0.76);
      font-size: 16px;
      line-height: 1.65;
    }

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

    .benefit {
      min-height: 150px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      padding: 22px;
    }

    .benefit-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #edf3ef;
      color: var(--green);
      font-weight: 800;
      margin-bottom: 16px;
    }

    .benefit h3 {
      margin: 0 0 8px;
      font-size: 18px;
      line-height: 1.25;
    }

    .benefit p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .contact-band {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 380px;
      gap: 32px;
      border-radius: 8px;
      background: var(--white);
      box-shadow: var(--shadow);
      padding: 38px;
    }

    .contact-band h2 {
      margin: 0 0 10px;
      font-size: 31px;
    }

    .contact-band p {
      max-width: 620px;
      margin: 0 0 24px;
      color: var(--muted);
      line-height: 1.7;
    }

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

    .field,
    textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 4px;
      background: #fbfaf8;
      padding: 15px 14px;
      color: var(--ink);
      font: inherit;
    }

    textarea {
      min-height: 118px;
      grid-column: 1 / -1;
      resize: vertical;
    }

    .form-submit {
      margin-top: 14px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .form-submit .btn {
      flex: 0 0 auto;
    }

    .contact-card {
      border-radius: 8px;
      background: var(--brand);
      color: var(--white);
      padding: 26px;
      align-self: start;
    }

    .contact-card > span {
      display: block;
      color: var(--gold);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .contact-card h3 {
      margin: 8px 0 18px;
      font-size: 24px;
      line-height: 1.18;
    }

    .contact-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.75);
      font-size: 14px;
      line-height: 1.7;
    }

    .contact-links {
      display: grid;
      gap: 10px;
      margin-top: 22px;
    }

    .contact-links .btn {
      width: 100%;
    }

    @media (max-width: 1120px) {
      .offer-card {
        grid-template-columns: 320px minmax(0, 1fr);
      }

      .offer-side {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
        gap: 24px;
        border-left: 0;
        border-top: 1px solid var(--line);
      }

      .side-details {
        margin-bottom: 0;
      }
    }

    @media (max-width: 1120px) {
      .nav {
        height: 76px;
        position: relative;
        align-items: center;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .navlinks {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        z-index: 25;
        grid-template-columns: 1fr;
        gap: 0;
        border: 1px solid rgba(214, 192, 165, 0.22);
        border-top: 0;
        border-radius: 0 0 8px 8px;
        background: rgba(66, 66, 66, 0.98);
        box-shadow: var(--shadow);
        overflow: hidden;
      }

      .navlinks.is-open {
        display: grid;
      }

      .navlinks a,
      .navlinks .active {
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        padding: 17px 18px;
        color: var(--white);
        background: transparent;
      }

      .navlinks .active {
        color: var(--ink);
        background: var(--gold);
      }

      .hero {
        min-height: auto;
      }

      .hero-inner {
        padding: 72px 0 34px;
      }

      .hero-grid,
      .join-box,
      .contact-band {
        grid-template-columns: 1fr;
      }

      h1 {
        font-size: 42px;
      }

      .section-head {
        display: block;
      }

      .section-head p {
        margin-top: 12px;
      }

      .offer-card {
        grid-template-columns: 1fr;
      }

      .offer-media {
        min-height: 400px;
      }

      .offer-side {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 700px) {
      .nav,
      .hero-inner,
      .main {
        width: min(100% - 24px, 1180px);
      }

      .hero-inner {
        padding-top: 46px;
      }

      .breadcrumb {
        margin-bottom: 22px;
      }

      h1 {
        font-size: 34px;
      }

      .lead {
        font-size: 16px;
      }

      .hero-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .hero-facts,
      .feature-line,
      .benefit-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .offer-media {
        min-height: 285px;
      }

      .offer-body,
      .offer-side,
      .join-box,
      .contact-band {
        padding: 22px;
      }

      .offer-body h3 {
        font-size: 25px;
      }

      .section {
        padding: 30px 0;
      }

      .section h2 {
        font-size: 27px;
      }

      .form-submit {
        align-items: stretch;
        flex-direction: column;
      }
    }
