
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --dark: #101317;
      --dark-soft: #171b21;
      --light: #f7f4ee;
      --white: #ffffff;
      --gold: #c99b5c;
      --brown: #6b4a2f;
      --grey: #7b7b7b;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--light);
      color: var(--dark);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: min(1150px, 90%);
      margin: auto;
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-weight: 800;
      font-size: 22px;
      letter-spacing: 1px;
      color: var(--brown);
    }

    .nav-links {
      display: flex;
      gap: 28px;
      font-size: 14px;
      color: #333;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .hero {
      min-height: 100vh;
      padding-top: 78px;
      display: flex;
      align-items: center;
      color: var(--white);
      background-image:
        linear-gradient(rgba(16,19,23,0.65), rgba(16,19,23,0.65)),
        url("img/1_1.png");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      transition: background-image 0.8s ease-in-out;
    }

    .hero-content {
      max-width: 760px;
    }

    .tag {
      display: inline-block;
      padding: 8px 16px;
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 999px;
      margin-bottom: 22px;
      color: #f0d7b5;
      font-size: 14px;
    }

    h1 {
      font-size: clamp(42px, 7vw, 78px);
      line-height: 1.05;
      margin-bottom: 24px;
    }

    .hero p {
      font-size: 19px;
      color: rgba(255,255,255,0.85);
      max-width: 620px;
      margin-bottom: 34px;
    }

    .buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 15px 24px;
      border-radius: 999px;
      font-weight: 700;
      transition: 0.25s;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--dark);
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,0.35);
      color: var(--white);
    }

    .btn:hover {
      transform: translateY(-3px);
    }

    section {
      padding: 90px 0;
    }

    .section-title {
      max-width: 720px;
      margin-bottom: 46px;
    }

    .section-title span {
      color: var(--gold);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 13px;
    }

    .section-title h2 {
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.1;
      margin: 12px 0;
    }

    .section-title p {
      color: var(--grey);
    }

    .intro-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .intro-card {
      background: var(--white);
      border-radius: 26px;
      padding: 34px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.06);
    }

    .intro-card h3 {
      font-size: 28px;
      margin-bottom: 14px;
      color: var(--brown);
    }

    .intro-card p {
      color: var(--grey);
      margin-bottom: 22px;
    }

    .properties {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .property {
      background: var(--white);
      border-radius: 26px;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(0,0,0,0.07);
    }

    .property-img {
      height: 240px;
      background-size: cover;
      background-position: center;
    }

    .property-content {
      padding: 26px;
    }

    .property-content h3 {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .property-content p {
      color: var(--grey);
      margin-bottom: 18px;
    }

    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .features span {
      background: #f2e6d6;
      color: var(--brown);
      padding: 7px 12px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
    }

    .phone-box {
      background: var(--dark);
      color: var(--white);
      padding: 18px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .phone-box strong {
      color: var(--gold);
    }

    .shop-section {
      background: var(--dark);
      color: var(--white);
    }

    .shop-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .shop-image {
      min-height: 420px;
      border-radius: 30px;
      background:
        linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)),
        url("img/magasin1.jpg") center/cover;
    }

    .shop-content h2 {
      font-size: clamp(34px, 4vw, 56px);
      line-height: 1.1;
      margin-bottom: 18px;
    }

    .shop-content p {
      color: rgba(255,255,255,0.75);
      margin-bottom: 22px;
    }

    .shop-list {
      display: grid;
      gap: 14px;
      margin: 26px 0;
    }

    .shop-list div {
      padding: 16px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      background: rgba(255,255,255,0.04);
    }

    .contact {
      text-align: center;
    }

    .contact-card {
      max-width: 760px;
      margin: auto;
      background: var(--white);
      padding: 42px;
      border-radius: 30px;
      box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    }

    .contact-card h2 {
      font-size: clamp(32px, 4vw, 52px);
      margin-bottom: 16px;
    }

    .contact-card p {
      color: var(--grey);
      margin-bottom: 26px;
    }

    .big-phone {
      display: inline-block;
      background: var(--gold);
      color: var(--dark);
      padding: 18px 30px;
      border-radius: 999px;
      font-size: 22px;
      font-weight: 800;
    }

    footer {
      background: #0b0d10;
      color: rgba(255,255,255,0.6);
      text-align: center;
      padding: 32px;
      font-size: 14px;
    }

    @media(max-width: 850px) {
      .nav-links {
        display: none;
      }

      .intro-grid,
      .properties,
      .shop-grid {
        grid-template-columns: 1fr;
      }

      section {
        padding: 70px 0;
      }

      .phone-box {
        flex-direction: column;
        align-items: flex-start;
      }
    }
 