
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #E9D5A2;
      color: #19070B;
      font-family: 'Times New Roman', Georgia, serif;
      line-height: 1.6;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .navbar-custom {
      background: #E9D5A2;
      right:0;
      margin:0 auto;
      width: 1000px;
      border-bottom: 1px solid #A47A5C;
    }

    .navbar-custom .nav-link {
      color: #19070B;
      font-size: 1.15rem;
      letter-spacing: 0.03em;
      white-space: nowrap;
      transition: color 0.25s ease;
    }

    .navbar-custom .nav-link:hover,
    .navbar-custom .nav-link:active {
      color: #5E2F29 !important;
    }

    main.container {
      text-align: center;
      padding: 4rem 1.5rem 3rem;
      margin: 0 auto;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: 110px;
    }

    h1 {
      font-family: 'Aboreto', 'Times New Roman', Georgia, serif;
      font-size: clamp(2.8rem, 9vw, 5.5rem);
      font-weight: 400;
      letter-spacing: -0.02em;
      line-height: 0.90;
      margin-bottom: 1.2rem;
      background: linear-gradient(90deg, #19070B, #5E2F29, #3C1617);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      word-break: break-word;
      hyphens: auto;
      overflow-wrap: break-word;
    }

    .subtitle {
      font-size: clamp(1.3rem, 4vw, 1.45rem);
      color: #A47A5C;
      max-width: 620px;
      margin: 0 auto 4rem auto;
      line-height: 1.4;
    }

    footer.footer-hint {
      padding: 3rem 1.5rem 2.5rem;
      text-align: center;
      font-size: clamp(0.95rem, 3.2vw, 0.98rem);
      color: #C6A67D;
      border-top: 1px solid #A47A5C;
      background: #3C1617;
      margin-top: auto;
    }

    @media (max-width: 820px) {
      main.container { padding-top: 130px; }
    }

    @media (max-width: 560px) {
      main.container {
        padding: 2.5rem 1rem 2rem;
        padding-top: 140px;
      }
      h1 { font-size: clamp(2.4rem, 11vw, 4rem); line-height: 0.88; }
      .subtitle { max-width: 90%; }
    }

    @media (max-width: 380px) {
      main.container { padding-top: 180px; }
    }