* { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #faf7f3;
      color: #2b2115;
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 10;
      background: #faf7f3ee;
      backdrop-filter: blur(8px);
      border-bottom: 1px solid #e3d6c7;
    }

    .nav-inner {
      max-width: 960px;
      margin: 0 auto;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-size: 14px;
    }

    .logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: #f0b878;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 18px;
      color: #2b2115;
    }

    nav a {
      margin-left: 24px;
      font-size: 14px;
      text-decoration: none;
      color: #4a3b2a;
      transition: opacity .2s;
    }
    nav a:hover { opacity: 0.7; }

    main {
      max-width: 720px;
      margin: 0 auto;
      padding: 40px 20px 60px;
    }

    section {
      padding: 40px 0;
      border-bottom: 1px solid #eee0d4;
    }

    .hero {
      text-align: center;
      padding-top: 30px;
    }

    .hero h1 {
      font-size: 40px;
      margin-bottom: 16px;
    }

    .hero p {
      font-size: 18px;
      max-width: 540px;
      margin: 0 auto;
      color: #5a4a35;
    }

    h2 {
      font-size: 26px;
      margin-bottom: 14px;
      text-align: center;
    }

    .section-text {
      font-size: 16px;
      color: #4a3b2a;
      text-align: center;
      max-width: 620px;
      margin: 0 auto;
    }

    .tagline {
      margin-top: 8px;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #b1905e;
    }

    .contact-block {
      text-align: center;
      font-size: 15px;
    }
    .contact-block a {
      color: #c47a28;
      text-decoration: none;
      border-bottom: 1px dashed #c47a28;
    }
    .contact-block a:hover {
      opacity: 0.8;
    }

    footer {
      text-align: center;
      font-size: 12px;
      color: #8b7660;
      padding: 20px;
    }

    @media (max-width: 600px) {
      .nav-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
      nav { width: 100%; }
      nav a { margin-left: 0; margin-right: 16px; }
      .hero h1 { font-size: 32px; }
    }
